CakePHP网站路径访问问题
我在我的一个项目的 LAMP 环境
上使用 CakePHP 1.3
,突然我对 URL 的网站路径问题感到震惊:
它是这样的:
http://localhost/project/app/webroot/index.php/mydocuments/
虽然到目前为止它的正确方式如下:
http://localhost/project/mydocuments/
但我真的不知道,更改了哪些设置会导致此路径问题。
我有 3 个默认的 .htaccess 文件,CakePHP 提供的就像我的文件夹结构一样,一个 htaccess 文件位于根文件夹(应用程序文件夹外部),一个 htaccess 文件位于应用程序文件夹中,另外一个位于 app/webroot 文件夹中,如您在此处所述,但它的路径仍然是问题..
I am using CakePHP 1.3
on my LAMP Environment
for one of my project, and what shocked me suddenly about my website path issue for URL:
Its coming like this :
http://localhost/project/app/webroot/index.php/mydocuments/
While till now it was coming properly like:
http://localhost/project/mydocuments/
But I really don't know, what settings altered to cause this path issue.
I have 3 default .htaccess files which CakePHP provides like my folder structure is, one htaccess file is in root folder (outside app folder), one htaccess file into app folder and one more into app/webroot folder as you've described here, but still its path is the issue..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我假设您使用 Apache 并且您的 Apache docroot 指向您的 app/webroot 文件夹。
您的 webroot 目录中需要有一个 .htaccess 文件才能在 Apache 上运行。
如果您的 Apache docroot 是您的应用程序根目录(不推荐),您需要在应用程序根目录中另一个像这样的 .htaccess 文件:
希望这会有所帮助!
I am assuming you use Apache and your Apache docroot is points to your app/webroot folder.
You need a .htaccess file in your webroot dir to make this work on Apache.
If your Apache docroot is your app root (not recommended) you need another .htaccess file like this in your app root:
Hope this helps!
我赞同 wrdevos 的说法。最重要的是,还要确保在文档根目录(在 Apache 配置中)的 Directory 指令下,选项 AllowOverride 设置为 All,如下所示:
在大多数系统上,它默认为 AllowOverride None,这根本不允许运行 .htaccess 文件。
I second what wrdevos is saying. On top of that, also make sure that under the Directory directive of your documentroot (in your Apache config) the option AllowOverride is set to All, like this:
On most systems it defaults to AllowOverride None, which doesn't allow .htaccess files to be run at all.