假设我有以下网址
http://host/testscripts/php_Env
当我请求此页面时,htaccess应该将.php附加到它
以便新网址成为
在此处输入代码
enter code here
的http://host/testscripts/php_Env.php
我有以下htaccess。
RewriteEngine On # Turn on the rewriting engine
RewriteRule ^php_[a-zA-Z_]+$ $1.php [NC,L]
答案 0 :(得分:1)
你忘记了括号。
RewriteEngine On # Turn on the rewriting engine
RewriteRule ^php_([a-zA-Z_]+)$ $1.php [NC,L]