CakePHP .htaccess mod_rewrite configuration to exclude a particular folder/url

后端 未结 3 2016
半阙折子戏
半阙折子戏 2020-12-22 01:48

I have a CakePHP installation in a sub folder in my server, I want to install another application inside that subfolder:

root/public_html/subfolder/cake/
roo         


        
3条回答
  •  一整个雨季
    2020-12-22 02:09

    Put this before the RewriteRule lines:

    RewriteCond %{REQUEST_URI} !^/my_custom_application
    

提交回复
热议问题