如何使用htaccess为每个URL请求php页面?

时间:2012-05-30 16:15:11

标签: apache

假设我有以下网址

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]

1 个答案:

答案 0 :(得分:1)

你忘记了括号。

RewriteEngine On    # Turn on the rewriting engine
RewriteRule    ^php_([a-zA-Z_]+)$  $1.php   [NC,L]