我之前有这段代码
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /lr/profile.php?username=$1
但这会使个人资料转到 coolsite.com/Something 我希望个人资料链接转到 /个人资料/某事而不是个人资料.php?用户名=东西
我该怎么做?
答案 0 :(得分:1)
除非您的问题还有更多问题,否则我只会将您的RewriteRule更改为以下类似的内容。
RewriteRule ^profile/(.*)$ /lr/profile.php?username=$1