如何解决htaccess中的基本RewriteRule不起作用
我是htaccess领域的新手,我一直在尝试进行非常简单的重定向:localhost / profiletest应该显示localhost / profile。
这是我的.htaccess:
RewriteEngine on
# Remove ".PHP"
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.PHP -f
RewriteRule ^(.*)$ $1.PHP [NC]
# This is the rule that does not work:
RewriteRule ^/profiletest$ /profile.PHP
# 404 page
ErrorDocument 404 /404.PHP
但是localhost / profiletest向我显示404页,而不向我显示配置文件页。我在这里做错了什么? (配置文件规则中的“ .PHP”在上面还有其他规则时是否必要?)
我也尝试过简化htaccess的操作:
RewriteEngine on
RewriteRule ^/profiletest$ /profile.PHP
# 404 page
ErrorDocument 404 /404.PHP
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。