MediaWiki/archive/embedding/1.16/index.php/.htaccess
< MediaWiki | archive | embedding | 1.16/index.php
Jump to navigation
Jump to search
Revision as of 00:08, 15 December 2017 by Woozle (talk | contribs) (Woozle moved page MediaWiki/embedding/1.16/index.php/.htaccess to MediaWiki/archive/embedding/1.16/index.php/.htaccess without leaving a redirect: obsolete, keeps changing)
About
Put this code in .htaccess in the same folder as index.php.
Code
<apache>
- optional but recommended:
php_flag register_globals 0 <Files ".ht*"> deny from all </Files>
- for debugging; set to 0 for production:
php_flag display_errors 1
- ** THIS is the important bit:
<IfModule mod_rewrite.c>
RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)$ index.php/?title=$1 [PT,L,QSA]
</IfModule> </apache>