在具有自己的 .htaccess 的子目录(例如http://website.com/sub/index.html)上仍然出于某种原因显示我为 Wordpress 拥有的 404 页面,该页面位于该目录上方。
.htaccess 用于子目录:
ErrorDocument 404 /404.html
.htaccess 用于主目录:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^website.net$ [OR]
RewriteCond %{HTTP_HOST} ^www.website.net$
RewriteRule ^foghelper.php$ http://website.net/subdirone/ [R=301,L]
RewriteRule ^foghelper.php$ http://website.net/subdirtwo/ [R=301,L]
# DO NOT REMOVE THIS LINE AND THE LINES ABOVE jNLK5d:REDIRECTID
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
如果您想知道,hta 中的链接会被审查。
编辑:
在添加RewriteCond %{REQUEST_URI} !^/?sub/
之前RewriteRule . /index.php [L]
错误似乎仍然存在。