客户 php 应用程序位于 cakephp 网站下的子域中

发布于 2024-10-01 21:30:44 字数 144 浏览 1 评论 0原文

我有一个用 cakephp 开发的网站,现在我想在 myapp.mywebsite.co.uk 等子域下添加一个用简单 php 开发的新应用程序

如何更改 .htaccess 以便 myapp 不会与 cakephp 交互 请帮帮我。

谢谢

I have website developed in cakephp, now I wants to add a new application developed in simple php under a sub-domain like myapp.mywebsite.co.uk

How to make changes to .htaccess so that myapp will not interact with cakephp
Please help me out.

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

野侃 2024-10-08 21:30:44

当您想要访问 webroot 中已有的文件时,cakephp 的 .htaccess 会被忽略,因此,在大多数情况下,您不需要更改它,只需将 php 文件上传到 /app/webroot 并将 url 指向那个文件名。

The cakephp’s .htaccess is made to be ignored when you want to access already existing files in your webroot, so, in most cases you won’t need to change it, just upload your php files into /app/webroot and point the url to that filename.

痴者 2024-10-08 21:30:44

这可能取决于您的子域名的配置方式,如果有疑问,我会在您的 .htaccess 中手动路由它,

RewriteRule ^subdomain.example.com$ /subdomain/index.php [L]

但请务必检查一下,因为我已经把它写下来了! ;) 这应该位于文件夹根目录的 htacess 中,因此位于您的 public_html 或类似位置。

It can depend how your sub domain name is configured, if in doubt I would route it manually in your .htaccess

RewriteRule ^subdomain.example.com$ /subdomain/index.php [L]

Do check it though, as I've written it off the top of my head! ;) This should go in the htacess in the root of the folder, so in your public_html or similar.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文