【发布时间】:2015-04-10 05:33:35
【问题描述】:
有些网址具有相同的网址结构模式:
//www.example.com/index.php?hop=this&step=that&fgh=1001
//www.example.com/index.php?hop=this&step=that&fgh=1002
//www.example.com/index.php?hop=this&step=that&fgh=1003
//www.example.com/index.php?hop=this&step=that&fgh= 部分相同。1001~1003 是唯一独特的部分。
我想将它们更改/重定向到:
http://www.example.com/fgh/1001
http://www.example.com/fgh/1002
http://www.example.com/fgh/1003
本网站在 Apache 上运行,带有 mod_rewrite。
我曾尝试处理 .htaccess 文件来重写规则,但目前失败了。
希望有人能帮我重写.htaccess中的代码
【问题讨论】:
标签: apache .htaccess mod-rewrite