2013-03-16 41 views
0

我想將「localhost /」映射到apache的「localhost/abc/def /」。我應該如何編輯.htaccess來實現這個目標?Apache重定向localhost到localhost/abc/def/

+1

看到這裏查看< ://stackoverflow.com/questions/2472960/htaccess-rewrite-directory> – 2013-03-16 23:21:52

回答

0

如果你想重定向僅這一個URL,如果要移動整個網站,而不是使用這個簡單的RewriteRule

RewriteEngine on 
RewriteRule ^$ /abc/def/ [R,L] 

,您可以使用Redirect

Redirect//abc/def/