Redirect a content of the directory to another directory in parent folder

你离开我真会死。 提交于 2019-12-25 02:31:59

问题


I want to redirect http://www.example.com/myfolder/dir1 to http://www.example.com/myfolder/dir2.

But I want to use .htaccess in dir1 i.e. http://www.exmaple.com/myfolder/dir1/.htaccess.


回答1:


Place this this rule as 1st rule in /myfolder/dir1/.htaccess:

RewriteEngine On
RewriteBase /myfolder/dir1/

RewriteRule ^(.*)$ /myfolder/dir2/$1 [L,R]


来源:https://stackoverflow.com/questions/22113393/redirect-a-content-of-the-directory-to-another-directory-in-parent-folder

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