.htaccess : Allow Sub Folder in Cakephp project directory
If you are running subfolder in cake php directory.
Than you got error missing controller.
I am providing a .htaccess code to resolve error
Please add this code in htaccess at top of file
<IfModule mod_rewrite.c> RewriteEngine on # # stuff to let through (ignore) RewriteCond %{REQUEST_URI} "/software/" [OR] RewriteCond %{REQUEST_URI} "/software/" RewriteRule (.*) $1 [L] #</IfModule> </IfModule>
Share