澳洲大头 发表于 2010-2-24 10:16:05

Redirect using .htaccess

mywebsite.com -> www.mywebsite.com
(rewrite has to be on)

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^mywebsite.com
RewriteRule ^(.*)$ http://www.mywebsite.com/$1


Single file redirects:

redirect 301 /index.php http://www.mywebsite.com/home/
redirect 301 /index.html http://www.mywebsite.com/home/
redirect 301 /index.htm http://www.mywebsite.com/home/
页: [1]
查看完整版本: Redirect using .htaccess