.htaccess URL Rewrite to Subdirectory

前端 未结 3 502
北恋
北恋 2020-12-10 14:25

What is the best method to rewrite anything below \"/some/subdir\" to \"/some/subdir/projects\" like from this:

http://www.mydomain.com/some/subidr/test/
         


        
3条回答
  •  心在旅途
    2020-12-10 15:22

    I would use this:

    RewriteEngine On
    RewriteRule ^(/some/subdir)/(.*)$ $1/projects/$2
    

    This will redirect /some/subdir/ to /some/subdir/projects/.

    Note that the leading / is actually required to match the beginning of the URL, unless you have RewriteBase / set somewhere.

提交回复
热议问题