当我在xamp或wamp的root中使用cake php(自动化)时,它工作正常(没有虚拟主机)。
但现在在http://85.9.95.52:8082/automation/
中使用cake php。
在这个url蛋糕中,php找不到任何东西(mycontroller,myView,...)甚至在索引页面中http://85.9.95.52:8082/automation/css/base.css
。
索引页面说明所有扩展已加载并连接到数据库但未找到任何内容。
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/
是根目录,cakephp(自动化)在I:/PM3.0.5/automation
任何人都可以帮助我?