我使用的Apache 2.2在Windows OS, 我需要非WWW網址重定向到www的網址,我在網上查,發現這似乎是工作了很多重定向非WWW網址,以WWW網址,通過htaccess的
RewriteCond %{HTTP_HOST} ^example\.co\.uk [NC]
RewriteRule ^(.*)$ http://www.example.co.uk/$1 [R=301,L]
但是,如果使用相同的重寫規則,我得到的WWW網址,以點到底:
例如:
http://example.com/test redirects to
http://www.example.com.
$1 is "." and its failing to add all params
你可以把你寫在.htaccess中的真實東西? – undone
@Aseman RewriteCond%{HTTP_HOST}^mysite \ .local [NC] RewriteRule ^(。*)$ http://www.mysite.local/$1 [R = 301,L] – Deepak