seo友好的网址和重定向

时间:2012-05-14 22:55:39

标签: .htaccess url seo

我终于找到了一种从我的网址中删除get参数的方法 我有网址喜欢 的 /s.com/file.php?name=somthing

使用此代码我将其更改为 s.com/file/somthing

选项+ FollowSymLinks  RewriteEngine On

RewriteRule ^ file /(.*?)$ http://s.com/file.php?name= $ 1

到目前为止一切正常

在我的本地主机中,当我点击 s.com/file/somthing 之类的网址时,它会完全转到网址

但在我的服务器中,它会重定向到旧网址并显示旧网址

我不想显示我的旧网址

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

http重定向始终是external =>在浏览器中可见。试试这个:

RewriteRule ^file/(.*?)$ /file.php?name=$1