|
|
Browse by Tags
All Tags » .htaccess
-
Hi,
I've been working on a custom CMS solution and I'm trying to get generic url matching working in .htaccess.
This is my attempt.. if the file or directory doesn't exist then rewrite
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ...
|
|
|