I have:
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/(skins|stylesheets|images|config|awstats|awstatsic ons|captcha)/
RewriteCond %{REQUEST_URI} !^/(redirect|texvc|index).php
RewriteCond %{REQUEST_URI} !^/favicon.ico
RewriteCond %{REQUEST_URI} !^/info.txt
RewriteCond %{REQUEST_URI} !^/robots.txt
RewriteRule ^/(.+)$ /index.php?title=$1 [L,QSA]
in public_html/.htaccess - a bare modification of the same file from an apache install. For some reason it is not working and when I try to make use of the rewrite rules all I get is a 404 from any attempt at a page. Is mod_rewrite not available on cpanel78 or have I missed a requirement somewhere ? (note that the rules are bog-standard for a MediaWiki install)
I'm puzzled because I see reports in the forums of mod_rewrite working on other cpanelXX hosts.
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/(skins|stylesheets|images|config|awstats|awstatsic ons|captcha)/
RewriteCond %{REQUEST_URI} !^/(redirect|texvc|index).php
RewriteCond %{REQUEST_URI} !^/favicon.ico
RewriteCond %{REQUEST_URI} !^/info.txt
RewriteCond %{REQUEST_URI} !^/robots.txt
RewriteRule ^/(.+)$ /index.php?title=$1 [L,QSA]
in public_html/.htaccess - a bare modification of the same file from an apache install. For some reason it is not working and when I try to make use of the rewrite rules all I get is a 404 from any attempt at a page. Is mod_rewrite not available on cpanel78 or have I missed a requirement somewhere ? (note that the rules are bog-standard for a MediaWiki install)
I'm puzzled because I see reports in the forums of mod_rewrite working on other cpanelXX hosts.
Comment