Apache DirectoryIndex 指令在 Ruby on Rails 中无法正常工作



我有一个网站,Ruby on Rails通过Phusion Passenger在根目录上运行。 一些 Apache Alias 指令提供静态 HTML 目录。

如果您从其中一个静态目录请求文件的确切 URL,Apache 会按预期返回该文件。 但是,在某些情况下,我没有得到预期的行为。 考虑别名 Alias /functional /path/to/functional ,其中功能目录包含 index.phphello.jpg

  1. https://example.com/functional/hello.jpg 请求按预期返回 JPEG 文件。
  2. https://example.com/functional/index.php 请求运行 PHP 脚本并按预期打印生成的 HTML 文档。
  3. https://example.com/functional/请求会导致 Rails 堆栈中的 404。
  4. 请求 https://example.com/functional(没有尾部斜杠(也会导致 Rails 堆栈中的 404。 理想情况下,此 URL 应返回 301,将用户重定向到 http://example.com/functional/

如果我将 index.html 文件添加到功能目录中(除了已经存在的索引.php(,路径 #3 和 #4 将按预期返回该文件。

以下是我的Apache配置文件中的相关部分:

LoadModule passenger_module /path/to/mod_passenger.so
LoadModule ssl_module modules/mod_ssl.so
<IfModule mod_passenger.c>
    # ... passenger setup stuff omitted ...
    Listen 443
    <VirtualHost *:443>
        ServerName ...
        DocumentRoot /path/to/rails/public
        PassengerRuby /path/to/ruby
        <Directory /path/to/rails/public>
            Allow from all
            Options -MultiViews
        </Directory>
        #  ... ssl setup omitted ...
    </VirtualHost>
</IfModule>

对于静态目录:

Alias /functional /path/to/functional/
Alias /phpMyAdmin /path/to/phpMyAdmin/
# ... other aliases omitted ...
<Directory /path/to/functional>
    DirectoryIndex index.php
    AllowOverride all
</Directory>

我已经尝试了索引中的大多数答案.php默认情况下不加载以使索引.php加载,没有占上风。 我什至不需要指定DirectoryIndex index.php,因为该行已经在 conf.d/php.conf 中。

关于如何解决这个问题的任何想法,Rails 在应该在 Apache 堆栈中其他地方的 URL 上提供 404?

您是否尝试过替换

<Directory /path/to/functional>

<Directory /functional>

我遇到了同样的问题。工作解决方案只是为乘客服务的虚拟主机中的RedirectMatch声明,如下所示:

RedirectMatch  ^/path/to/functional(/)?$  /path/to/functional/index.php

相关内容

  • 没有找到相关文章

最新更新