hey all
i am using mod_rewrite to tidy my URLS, but I want it to explude a domain so if I goto that directory it will show me the actual contents and not the dummy one.
i was using
i tried
but it doesnt seem to be doing what I want
any help?
i am using mod_rewrite to tidy my URLS, but I want it to explude a domain so if I goto that directory it will show me the actual contents and not the dummy one.
i was using
Code:
RewriteRule ^([^/\.]+)(/)?$ index.php?view=$1 [L]
i tried
Code:
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule !^(organiser)(/.*)?$ index.php%{REQUEST_URI} [L]
but it doesnt seem to be doing what I want
any help?