-Phoenix- Posted November 3, 2009 Share Posted November 3, 2009 Hello ppl, for a website i'm using the rewrite rule RewriteRule ([a-z0-9A-Z]+) page.php?content=$1 [NC,L,NE] If it request domain.com/index it displays an index page So i tried to set: DirectoryIndex index But it doesn't work (probally because the file is virtual and does not exists) There has to be some nifty trick to do this... i just haven't been able to find it -- cheers PS. currently I have an index.php containing: (this does work, but is not the way I want it to be...) <?php header("HTTP/1.1 301 Moved Permanently"); header("Location: index"); header("Cache-Control: no-store, no-cache"); header("Pragma: no-cache"); ob_end_clean(); die(); ?> Quote Link to comment Share on other sites More sharing options...
-Phoenix- Posted November 3, 2009 Author Share Posted November 3, 2009 Right, one cup of coffee later, and suddenly I got the solution... DirectoryIndex page.php?content=index Or are there better methods? I'd like to know Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.