I have taken over the administration of a MediaWiki server at my university (Version: 1.35.2).
It is installed with XAMPP (PHP: 7.4.9 (apache2handler); MariaDB: 10.4.14-MariaDB; ICU: 66.1) in /opt/lampp/htdocs/wiki
I'm currently trying to shorten the URL with the help of this guide, or rather put it into a readable form. So I added this to the httpd.conf:
## https://www.mediawiki.org/wiki/Manual:Short_URL/Apache
# Enable the rewrite engine
RewriteEngine On
# Short URL for wiki pages
RewriteRule ^/?wiki(/.*)?$ %{DOCUMENT_ROOT}/wiki/index.php [L]
# Redirect / to Main Page
RewriteRule ^/*$ %{DOCUMENT_ROOT}/wiki/index.php [L]
and this to Localsettings.php
$wgArticlePath = "/wiki/$1";
The problem is that the link is fine, but the website then looks like this:
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.
Question
M.Smolarz
Hi,
I have taken over the administration of a MediaWiki server at my university (Version: 1.35.2).
It is installed with XAMPP (PHP: 7.4.9 (apache2handler); MariaDB: 10.4.14-MariaDB; ICU: 66.1) in /opt/lampp/htdocs/wiki
I'm currently trying to shorten the URL with the help of this guide, or rather put it into a readable form. So I added this to the httpd.conf:
and this to Localsettings.php
$wgArticlePath = "/wiki/$1";
The problem is that the link is fine, but the website then looks like this:
Without this line:
RewriteRule ^/?wiki(/.*)?$ %{DOCUMENT_ROOT}/wiki/index.php [L]
Then the web page looks normal again.
Does someone know what's wrong there?
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.