JDOC

MediaWiki setup notes: Difference between revisions

From Joomla! Documentation

MATsxm (talk | contribs)
Marked this version for translation
No edit summary
 
Line 8: Line 8:
<translate>
<translate>
==mod_rewrite rules for this wiki== <!--T:2-->
==mod_rewrite rules for this wiki== <!--T:2-->
Invaluable information [http://www.mediawiki.org/wiki/Manual:Short_URL/Page_title_--_PHP_as_a_CGI_module%2C_no_root_access here]. To begin with we have these rewrite rules in place:
Invaluable information [https://www.mediawiki.org/wiki/Manual:Short_URL/Page_title_-_nginx,_Root_Access,_PHP_as_a_CGI_module here]. To begin with we have these rewrite rules in place:
</translate>
</translate>



Latest revision as of 12:35, 30 October 2018

These are some notes about setting up a MediaWiki for use by the Documentation Working Group.

mod_rewrite rules for this wiki

Invaluable information here. To begin with we have these rewrite rules in place:

RewriteEngine On
RewriteRule ^[^:]*\. - [L]
RewriteRule ^[^:]*\/ - [L]
RewriteRule ^/*$ /wiki/index.php?title=Main_Page [L,QSA]
RewriteRule ^(.+)$ /wiki/index.php?title=$1 [L,QSA]

However, because we have some pages which have dots in their titles (and hence their URLs), we had to apply the following rewrite rules:

RewriteEngine on

RewriteCond         %{REQUEST_URI} !index.php
RewriteCond         %{REQUEST_FILENAME}  -f [OR]
RewriteCond         %{REQUEST_FILENAME}  -d [OR]
RewriteCond         %{REQUEST_FILENAME}  -l
RewriteRule  ^(.+)  /path/to/web/directory/$1  [L]

# redirect to main page
RewriteRule ^/*$ /index.php?title=Main_Page [L,QSA]

# anything else is to be treated as a title
RewriteCond         %{REQUEST_URI} !index.php
RewriteRule ^(.+)$ /index.php?title=$1 [L,QSA]

Page redirections

In the default MediaWiki installation it is possible to redirect from one page to another by including #REDIRECT [[page-to-redirect-to]] at the very top of a page. However, this does not alter the URL shown in the browser address bar and so could lead search engines to consider it as duplicate content. A simple fix has been applied to this wiki so that redirects are done by the browser by having the wiki send out an HTTP 302 redirect status code. The fix applied is Force all redirects to be client side redirects (HTTP 302 Temporary Redirect)