phpengine/.htaccess

8 lines
199 B
ApacheConf
Raw Permalink Normal View History

2014-11-02 14:02:39 +00:00
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>