When i use cake php(automation) in root of xamp or wamp it worked correct(with out virtual host).
But now use cake php in http://85.9.95.52:8082/automation/
.
In this url cake php not found anythings(mycontroller,myView,...) even http://85.9.95.52:8082/automation/css/base.css
in index page.
Index page say that all extension loaded and connect to database but not found anythings .
httpd.conf
DocumentRoot "I:/PM3.0.5/processmaker/workflow/public_html"
DirectoryIndex index.html index.php
<Directory "I:/PM3.0.5/processmaker/workflow/public_html">
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
ExpiresActive On
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^.*/(.*)$ app.php [QSA,L,NC]
</IfModule>
</Directory>
AliasMatch (?i)^/automation(.*)$ I:/PM3.0.5/automation/$1
<Directory "I:/PM3.0.5/automation">
RewriteEngine off
Allow from all
Options FollowSymlinks Indexes
</Directory>
I:/PM3.0.5/
is root directory and cakephp(automation) has in I:/PM3.0.5/automation
Any one can help me?