Jump to content

[SOLVED] DirectoryIndex on a virtual file


-Phoenix-

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.