重定向出“应用程序”目录
我在 CakePHP 安装中创建了一个与“app”目录同一级别的“blog”目录。 blog目录主要包含一个WordPress博客。
但是,当我将用户重定向到 www.domain.com/site/blog 时,CakePHP 会自动抛出错误,因为没有“blog”控制器,而不是重定向它们到 WordPress 博客。
它如何将用户重定向出“app”目录?
I have created a 'blog' directory on the same level as my 'app' directory in my CakePHP installation. The blog directory basically contains a WordPress blog.
However, when I redirect my users to www.domain.com/site/blog, CakePHP would automatically throw an error as there is no 'blog' controller instead of redirecting them to the WordPress blog.
How do it redirect users out of the 'app' directory?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在包含 app/ 和 blog/ 的文件夹中,应该有一个 .htaccess 文件。会有一个与此类似的部分:
更改此部分,以便 CakePHP 的重写器规则忽略 blog 文件夹:
in the folder containing app/ and blog/ , there should be a .htaccess file. There will be a section similar to this:
change this so that the blog folder is ignored by CakePHP's rewriter rules: