2
我有一個文件index.php
,並在同級.htaccess
與此代碼:的ErrorDocument 404打印文件名
ErrorDocument 404 index.php
當我生成一個未發現錯誤打印的頁面的文件名,所以,在這種情況下,我只看到index.php
作爲文字文本。我想要的顯然是重定向到主頁。
有關這個問題的任何想法?
www\site
-index.php
-.htaccess
這不起作用。我處於同一水平。 – anvd
如果'ErrorDocument 404/index.php'不適合你,這意味着index.php不在你的目錄中 - 目錄root通常是你登錄到FTP後看到的地方:)非常常見的是'ErrorDocument 404/www/index.php'或'ErrorDocument 404/domain/www/index.php'或者只是'ErrorDocument 404/domain/index.php' - 這可能不是每個人都清楚的:) –
如果我把你的dir結構和我的評論:'ErrorDocument 404/www/site/index.php'希望我幫助。 :) –