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

一个规则(删除“ .PHP”)效果很好。

但是localhost / profiletest向我显示404页,而不向我显示配置文件页。我在这里做错了什么? (配置文件规则中的“ .PHP”在上面还有其他规则时是否必要?)

我也尝试过简化htaccess的操作:

RewriteEngine on
RewriteRule ^/profiletest$ /profile.PHP

# 404 page
ErrorDocument 404 /404.PHP

具有相同结果(/ profiletest显示404页面)。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)