如何禁用302重定向

时间:2012-07-05 16:42:00

标签: php zend-framework redirect ubuntu

我的网站托管在由Ubuntu和LAMP支持的VPS上。

如果没有www,我无法使用指向任何网页的直接链接。

输入网址http://example.com/secondpage

将重定向到http://www.example.com/。 第二页丢了。但http://www.example.com/secondpage完美无缺。 我尝试更改.htaccess,但没有效果。

你能帮助我吗?

1 个答案:

答案 0 :(得分:1)

您需要在.htaccess

中使用此功能
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]

如果这不起作用,您可以使用:

Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com [nc]
RewriteRule ^(.*)$ http://www.example.com/$1 [r=301,nc]