有人可以建议吗?我希望我网站的访问者的默认页面是 index.php,对于所有不存在的页面,访问者应该看到 errordoc.php
所以我把它放在 .htaccess 中:
ErrorDocument 404 /errordoc.php
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^mysite\.org\.uk$ [NC]
RewriteRule ^(.*)$ http://mysite.org.uk/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
不幸的是,一切都将进入 index.php,包括错误。我试过问我的朋友谷歌,但今天是他的休息日!