My URL is:
http://website.com/folder/blah.php
How do I write a rewrite rule so that the request:
http://website.com/blah.php
Gets silently redirected to /folder/ ?
|
My URL is:
How do I write a rewrite rule so that the request:
Gets silently redirected to /folder/ ? |
|||
|
|
|
Really?
doesn't work for you? See also http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html#rewriterule Edit, based on the comment... If your current rule is
then you should probably precede it with a condition than won't match if the rule has already been applied. For example
Otherwise you end up looping with blah.php -> /dms/blah.php -> /dms/dms/blah.php -> /dms/dms/dms/blah.php -> etc. |
|||||
|
|
|||
|
|