vote up 0 vote down star

Ive started out with the most basic rewrite there is, take any request and give it to my index page:

RewriteEngine On
RewriteRule ^.*$ index.php [L,QSA]

Im trying to change it now so lets say i have a directory called special, I actually want to be able to go to http://example.com/special and access whatever files are in there.

I tried this:

RewriteRule ^special/.*$ index.php [L, QSA]

but it didnt work.

flag

2 Answers

vote up 0 vote down

If you want this to apply to any directory, try this:

RewriteEngine On
RewriteCond %{REQUESTFILENAME}!-d 
RewriteRule ^ index.php [L]
link|flag
vote up 3 vote down

Try either this:

RewriteRule !^special/ index.php [L]

Or this:

RewriteRule ^special/ - [L]
RewriteRule ^ index.php [L]
link|flag
the first got it working – asasdas Nov 4 at 21:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.