【发布时间】:2011-08-15 20:46:11
【问题描述】:
我想将 index.php?c=4 和 index.php?g=23 等网址重写为 website.com/games/categoryname/身份证/ 游戏页面 website.com/play/gamename/id/
也是如此我的 htaccess 文件如下所示:
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^([a-zA-Z0-9\-_%]+)/([a-zA-Z0-9\-_%]+)/([0-9]+)/$ index.php?c=$3
RewriteRule ^([a-zA-Z0-9\-_%]+)/([a-zA-Z0-9\-_%]+)/([0-9]+)/$ index.php?g=$3
问题是只有第一个重写规则有效,如果我评论它,那么第二个也可以工作,但永远不会两个:(。我正在 MAMP 上测试这个
你能帮帮我吗?
【问题讨论】:
标签: .htaccess mod-rewrite url-rewriting