最近从 PHP 切换到 Rails Passenger。无法使index.php重定向到/

发布于 2024-11-26 13:51:49 字数 327 浏览 1 评论 0原文

带有 apache 的 phusion guest 上的 Rails 3 在开发服务器上,routes.rb

match "/index.php" => redirect("/")

工作正常。在生产中它会抛出 404 并且它是 Apache 404 页面而不是 Rails 404 页面 从 httpd.conf 和 .htaccess 中取出 DirectoryIndex。 如果您进行像 /sub/index.php 这样的重定向,它可以正常工作,只是不在根目录中。

有人知道问题可能是什么或如何解决吗?恐怕人们已经为index.php添加了书签

Rails 3 on phusion passenger with apache
on development server in routes.rb

match "/index.php" => redirect("/")

works fine. In production it throws a 404 and its an Apache 404 page not a Rails 404 page
Took out DirectoryIndex from httpd.conf and .htaccess.
If you make a redirect like /sub/index.php it works fine just not in the root.

Anyone know what the problem could be or how to work around? I am afraid people have bookmarked index.php

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

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

发布评论

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

评论(1

—━☆沉默づ 2024-12-03 13:51:49

如果您直接将index.php 直接指向根控制器/操作,而不是重定向,它可以工作吗?

match "/index.php" => "welcome#index"

Instead of redirecting, does it work if you just point index.php straight at the root controller/action?

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