标签: mod-rewrite url-rewriting
我已使用网址重写将/foobar重写为index.php?username=foobar,使用:
/foobar
index.php?username=foobar
RewriteRule ^([^/.]+)$ /index.php?username=$1 [QSA,L]
我应该添加什么来重写/foobar/rss到rss.php?username=foobar?
/foobar/rss
rss.php?username=foobar
答案 0 :(得分:0)
这就是它的完成方式:
RewriteRule ^([^/]+)/rss$ /rss.php?username=$1 [QSA,L]