
Untitled
By: a guest on
Jul 31st, 2012 | syntax:
None | size: 0.41 KB | hits: 15 | expires: Never
.htaccess Redict URLs without File Extensions
RewriteEngine on
RewriteRule !.(js|gif|css|jpg|png|ico|txt|html)$ index.php [L]
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteEngine On
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-f
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]