标签: php apache .htaccess mod-rewrite
我是htaccess的新手并希望做以下事情,
我想重写网址,
http://example.com/test/test.php to http://example.com/test.html
我的htaccess文件存在于测试文件夹中。任何人都可以帮助找出这个问题。
谢谢
答案 0 :(得分:1)
应该这样做:
RewriteEngine on RewriteRule ^(.*).html$ test/$1.php [QSA]