我需要我的网址
/crescenty/名字
重定向到
/crescenty/profile.php?player=名称
我用过这个 mod_rewrite 代码
RewriteEngine on
RewriteRule ^([a-z]+)$ /crescenty/$1/ [NC,R]
RewriteRule ^([a-z]+)/$ /crescenty/profile.php?player=$1 [NC,R]
但是有一个小问题,URL没有停留,它一直回到
/crescenty/profile.php?player=名称
我尝试使用上面的 mod_rewrite 代码,最后一行的标志为 [NC,L],URL 保持我想要的方式
/crescenty/名字
但页面没有正确显示(css 似乎不适用)
请帮忙!