我的 htaccess 规则不起作用
我不想显示 php 扩展
我的规则
Options +FollowSymlinks -MultiViews -Indexes
RewriteEngine on
RewriteBase /
RewriteRule ^WHMCS/?$ 404.php [L]
RewriteRule .*\.php$ 404.php [L]
RewriteRule ^contact$ /contact.php [L]
RewriteRule ^p/([a-zA-Z0-9_-]+)/?$ ./page.php?page=$1 [L]
RewriteRule ^comments$ ./comments.php [L]
但是当我打开没有任何扩展名的 url 时,它也会向我显示 404 错误
,提前谢谢