0

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

4

1 回答 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 回答