我正在尝试重写我的网址以生成seo友好网址。我原来的网址就像是
video_play.php?cat=1?author=3?video=4
其中
"cat=1"
代表我的类别,1代表我的类别名称,如歌曲,电影等。
"author=3"
3是歌手的身份。
"video=4"
4是当前正在播放的曲目的ID ...
我想将此网址设为video_play/song/artistname/songtitle.html
我在.htaccess中尝试此代码,如果有人可以帮助我...提前感谢...
RewriteRule /author/(.*)/cate/(.*) video_play.php?author=$1&cate=$2
答案 0 :(得分:1)
请改为尝试:
RewriteRule /author/([^\.]*)/cate/([^\.]*) video_play.php?author=$1&cate=$2