Apache将localhost重定向到localhost / abc / def /

时间:2013-03-16 23:19:33

标签: apache .htaccess mod-rewrite url-rewriting yii

我想在apache中将“localhost /”映射到“localhost / abc / def /”。我该如何编辑.htaccess来实现这个目标?

1 个答案:

答案 0 :(得分:0)

如果您只想重定向这一个网址,请使用这个简单的RewriteRule

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

如果您想要移动整个网站,可以使用Redirect

Redirect / /abc/def/