我有一个网站,该网站的URL中要重写查询字符串.网址是domain.com/profile.php?user=sven,我希望它重定向到domain.com/profile/user/sven.
我创建了一个具有以下规则的htaccess文件:
RewriteEngine On
RewriteRule ^/?user/([^/]+)/?$profile.php?user=$1 [L,QSA]
RewriteCond %{QUERY_STRING} ^user=([A-Za-z0-9\-\_]+)$
RewriteRule ^profile\.php$domain.com/user/%1?/ [L,R=301]
这有效,但重定向到的网址是:domain.com/user/sven?/
我的问题是,我可以删除吗?在网址中?
解决方法:
将您的htaccess更新为关注以下内容,
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/?profile/(.*?)/?$/profile.php?user=$1 [L]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /profile\.php\?user=([^]+)
RewriteRule ^/?profile\.php$/users/%1? [L,R=301]
</IfModule>
我希望这有帮助.