嗨,大家好,你可以帮助我吗?
我在使用自定义404错误页面时遇到问题
这是我的 htaccess代码:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^home index.php [NC,L]
RewriteRule ^works works.php [NC,L]
RewriteRule ^category/([0-9a-zA-Z_-]+) category.php?cat=$1 [NC,L]
ErrorDocument 404 /404.html
</IfModule>
可以帮助解决这个问题
这是错误
未找到
在此服务器上找不到请求的URL / fur / cate。
此外,尝试使用ErrorDocument处理请求时遇到404 Not Found错误。
Apache / 2.4.7(Win32)OpenSSL / 1.0.1e本地主机端口8080上的PHP / 5.5.9服务器
答案 0 :(得分:0)
选项-MultiViews
RewriteEngine On
# Redirect to HTTPS
#RewriteCond %{HTTPS} !on
#RewriteRule ^.*$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# Redirect Trailing Slashes If Not A Folder...
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond $1 !^(cron\.php)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
覆盖此文件