I have an cakephp application as the root folder and .htaccess
is written as follows
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>
Now what I want is a core php application in its Subfolder, but .htaccess
is causing trouble for me.
What is best way to write the .htaccess
so both can work.