2012-07-29 65 views
0

我知道,你可以在.htaccess使用DirectoryIndex example.html,但我需要的是改變指數爲特定的目錄,比如:你可以改變特定目錄的DirectoryIndex嗎?

DirectoryIndex /ex/index_file.html 

DirectoryIndex /ex2/index_file2.html 

有沒有一種方式,你可以做到這一點?我不想重命名文件,我試圖做這個index.html,因爲這不是它是什麼。你需要先登錄,如果你不是,它會重定向你;但我認爲這看起來很sl。。

+0

沒有得到你的問題。 – 2012-07-29 06:54:35

+0

我的意思是說,我有2個單獨的目錄。 'dir1'和'dir2'。對於'dir1',我希望DirectoryIndex是'example.html',對於'dir2'我希望DirectoryIndex是'another_example.html'。這有幫助嗎? – 2012-07-29 07:08:03

+0

哦,明白了我想你可以在那裏看到答案,我想它應該解決 – 2012-07-29 07:10:02

回答

1

您可以在每個目錄要在.htaccess不同的目錄索引在ex目錄應包含一個.htaccess:

DirectoryIndex index_file.html 

ex2上應包含以下內容:

DirectoryIndex index_file2.html 

你也可以在你的Web根的.htaccess使用<Directory>只要你被允許覆蓋此:

<Directory ex> 
    DirectoryIndex index_file.html 
</Directory> 

<Directory ex2> 
    DirectoryIndex index_file2.html 
</Directory> 
+0

這解決了我的問題。 :)我認爲你可以做到這一點,我想我應該在發佈問題之前嘗試過;好吧。謝謝您的幫助! – 2012-07-29 07:08:22

相關問題