htaccess将特定网址重写为另一个特定网址

时间:2017-05-31 14:19:02

标签: apache .htaccess mod-rewrite

我正在尝试为实现以下

创建一个htaccess重写

我有一个这样的网址http://www.example.com/directory/test.php,并希望在http://www.example.com/directory/test.html

时显示此页面的内容

我试过以下但没有奏效。谁能让我知道我在这里做错了什么

 RewriteEngine On
 RewriteBase /directory/ 
 RewriteCond ^directory/test.html/?$ [NC]
 RewriteRule ^(.*)http://www.examle.com/directory/test.php [NC,L]

任何帮助将不胜感激

1 个答案:

答案 0 :(得分:2)

您可以使用:

RewriteEngine On
RewriteRule ^directory/test\.html/?$ directory/test.php [NC,L]