在htaccess文件中,我目前在发生404错误时重定向用户
ErrorDocument 404 /index.php?p=error
但是,除此重定向外,我希望地址栏中的网址成为www.mywebsite.com
我怎样才能做到这一点?
编辑:我的htaccess的完整内容:Options -Indexes
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
ErrorDocument 404 /index.php?p=error