htaccess重定向url具有不同的文件夹和参数

时间:2012-11-03 22:29:05

标签: .htaccess

我想重定向.htaccess中的网址:

domain_name.com/folder/index.php?param=0  

为:

domain_name.com/another_folder/page.html  

如何实现这一目标?

1 个答案:

答案 0 :(得分:0)

RewriteRule ^another_folder/page([A-Za-z0-9-]+)\.html$ folder/index.php?param=$1
相关问题