我想在 apache 中将“localhost/”映射到“localhost/abc/def/”。我应该如何编辑 .htaccess 来实现这一点?
问问题
290 次
1 回答
0
If you want to redirect just this one URL, use this simple RewriteRule
RewriteEngine on
RewriteRule ^$ /abc/def/ [R,L]
If you want to move the whole site instead, you can use Redirect
Redirect / /abc/def/
于 2013-03-17T02:14:22.243 回答