我正在尝试为实现以下
创建一个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]
任何帮助将不胜感激
答案 0 :(得分:2)
您可以使用:
RewriteEngine On
RewriteRule ^directory/test\.html/?$ directory/test.php [NC,L]