我有链接:http://thoughtsmash.com/profile.php?name=1
我想重写为:http://thoughtsmash.com/profilename/1
我在.htaccess文件中有这个:
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.(.*) [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,NC,L]
RewriteRule ^/profilename/([0-9_]+)$ /profile.php?name=$1 [NC]
但它什么都没做!删除“www。”工作正常,但其余的没有。任何想法为什么?感谢
答案 0 :(得分:0)
试试这个:
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*) [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,NC,L]
RewriteRule ^profilename/([0-9_]+)$ /profile.php?name=$1 [NC]
请注意,我添加了RewriteBase
并删除了引导/