Apache redirect localhost to localhost/abc/def/

馋奶兔 提交于 2019-12-11 19:17:03

问题


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


回答1:


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/


来源:https://stackoverflow.com/questions/15455868/apache-redirect-localhost-to-localhost-abc-def

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!