-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(); ?> Link to comment https://forums.phpfreaks.com/topic/180123-solved-directoryindex-on-a-virtual-file/ 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 Link to comment https://forums.phpfreaks.com/topic/180123-solved-directoryindex-on-a-virtual-file/#findComment-950238 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.