如果链接是默认情况下http://example.com
将重定向到http://example.com/index.html
。
(或.php
或类似的东西)。
但如果用户http://example.com/index.html
输入 url,我想显示 404 错误。
我知道我能做到
RewriteEngine On RewriteRule index.html 404.html [R=304,L]
但我想要更通用的东西,它可以适用于每一页。
如果链接是默认情况下http://example.com
将重定向到http://example.com/index.html
。
(或.php
或类似的东西)。
但如果用户http://example.com/index.html
输入 url,我想显示 404 错误。
我知道我能做到
RewriteEngine On RewriteRule index.html 404.html [R=304,L]
但我想要更通用的东西,它可以适用于每一页。