gpt4 book ai didi

php - 在 Apache2/Cake PhP 中定义文档根目录

转载 作者:可可西里 更新时间:2023-10-31 23:20:42 24 4
gpt4 key购买 nike

我有一个损坏的 Cake PHP 站点,不是我写的,但我负责修复。我启动了主 Controller ,但是没有 css/js/images,当我单击一个链接时,我收到 404 not found。我相信 mod_rewrite 或 apache 中的 docroot 配置有问题。

在阅读 Cake 文档时,我遇到了这个:

“应用程序/网络根目录在生产设置中,此文件夹应作为应用程序的文档根目录。此处的文件夹还用作 CSS 样式表、图像和 JavaScript 文件的存放位置。”

在我的/etc/apache2/sites-enabled/this-site 中,我看到了这个:

DocumentRoot /u02/data/docroots/this_site
<Directory /u02/data/docroots/this_site>
Options -Indexes
AllowOverride none
Order deny,allow
Allow from all
</Directory>

所以,我的问题是:上面的配置 block 是否需要:/u02/data/docroots/this_site/app/webroot 作为 DocumentRoot 和 ?

您还可以想到其他任何地方来解决此问题吗?

最佳答案

由于您有权编辑 Apache 配置文件 - 最适合进行标准生产安装。

修复文档根目录

does the above config block need to have: .../app/webroot as the DocumentRoot

假设该路径存在:是。

这将修复损坏的 css/js/images。

修复模组重写

将重写规则放入虚拟主机配置中:

DocumentRoot /u02/data/docroots/this_site/app/webroot
<Directory /u02/data/docroots/this_site/app/webroot>
Options -Indexes
AllowOverride none
Order deny,allow
Allow from all

// added
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</Directory>

然后这会将对任何非文件的请求路由到应用程序。

验证使用的重写规则是否与使用的CakePHP版本兼容,以上是基于the latest release的规则- it changed over the years并且使用错误的重写规则可能会产生意想不到的副作用。

实际上坏了什么

AllowOverride none

这可以防止 .htaccess 文件被 apache 读取。如果您将其更改为 AllowOverride all,并假设当前忽略的 .htaccess 文件存在,该站点将正常运行 - 但作为开发安装。

关于php - 在 Apache2/Cake PhP 中定义文档根目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21886795/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com