最近从 PHP 切换到 Rails Passenger。无法使index.php重定向到/
带有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您直接将index.php 直接指向根控制器/操作,而不是重定向,它可以工作吗?
Instead of redirecting, does it work if you just point index.php straight at the root controller/action?