0

I want to map "localhost/" to "localhost/abc/def/" in apache. How should I edit .htaccess to achieve this?

1 Answers1

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/
Olaf Dietsche
  • 72,253
  • 8
  • 102
  • 198