2010-05-04 40 views

回答

3

您可以使用mod_alias

RedirectMatch 301 ^/$ http://example.com/blog 

或者用於更復雜和有條件的重定向mod_rewrite

RewriteEngine on 
RewriteRule ^$ http://example.com/blog [L,R=301] 

無論做完全一樣的,但mod_rewrite的可能並不總是有效。

+0

非常感謝。第一種方法很好用! – Sheldon 2010-05-04 14:37:04

相關問題