Rewrite URL to subfolder with multiple APPs?

So basically you have some folders which you don't want to pass through Cake's routing and dispatcher. For this, add the following lines in your public_html/. Htacess file: RewriteRule ^(exist_folder).

* - NC,L This will allow direct access to the exist_folder which is in root directory. Accessing domain.com/exist_folder would be possible after adding this rule If you are looking for an automated solution (Your lines: I don't want to rewrite if file/directory exist on server), create a php file which will generate a . Htaccess file with above mentioned RewriteRule basing on is_dir().

Whenever you add a folder, run this php file which'll generate a . Htaccess with all the exceptions added :).

So basically you have some folders which you don't want to pass through Cake's routing and dispatcher. For this, add the following lines in your public_html/. Htacess file: RewriteRule ^(exist_folder).

* - NC,L This will allow direct access to the exist_folder which is in root directory. Accessing domain.com/exist_folder would be possible after adding this rule. If you are looking for an automated solution (Your lines: I don't want to rewrite if file/directory exist on server), create a php file which will generate a .

Htaccess file with above mentioned RewriteRule basing on is_dir(). Whenever you add a folder, run this php file which'll generate a . Htaccess with all the exceptions added :).

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions