使用 subdomain/folder 上的 .htaccess 重写规则删除 CI4 public/index.php

Remove CI4 public/index.php with .htaccess rewrite rule on subdomain/folder

我有一个名为 test.mysite.com 的子域,我在名为 project 的文件夹中安装了 CI4。所以 CI4 安装的实际 url 是 test.mysite.com/project/public/index.php。我想从 url 中删除 public/index.php 部分,但继续使用 public 文件夹来存放我的文件。

我在项目文件夹根目录上使用这个 .htaccess:

DirectoryIndex /public/index.php
RewriteEngine on
RewriteCond  !^(index\.php|images|assets|css|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./public/index.php/ [L]

<IfModule mod_headers.c>
  <FilesMatch "\.(ttf|ttc|otf|eot|woff|woff2|font.css|css|js)$">
    Header set Access-Control-Allow-Origin "*"
  </FilesMatch>
</IfModule>

但它不起作用。当我访问 test.mysite.com/project 时,它会引导我进入服务器文件列表。我知道 .htaccess 文件正在被正确读取,因为当我在那里添加错误时它会给我一个警告

编辑: CI4 已经在 public 文件夹中附带了一个 htaccess:

# Disable directory browsing
Options All -Indexes

<IfModule mod_rewrite.c>
    Options +FollowSymlinks
    RewriteEngine On

    # If you installed CodeIgniter in a subfolder, you will need to
    # change the following line to match the subfolder you need.
    # http://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewritebase
    # RewriteBase /

    # Redirect Trailing Slashes...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} (.+)/$
      RewriteRule ^ %1 [L,R=301]

    # Rewrite "www.example.com -> example.com"
    RewriteCond %{HTTPS} !=on
    RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
    RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]

    # Checks to see if the user is attempting to access a valid file,
    # such as an image or css document, if this isn't true it sends the
    # request to the front controller, index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^([\s\S]*)$ index.php/ [L,NC,QSA]

    # Ensure Authorization header is passed along
    RewriteCond %{HTTP:Authorization} .
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    ErrorDocument 404 index.php
</IfModule>

# Disable server signature start
    ServerSignature Off
# Disable server signature end

When I access test.mysite.com/project it leads me to a server list of files

因为你的DirectoryIndex设置为/public/index.php(估计不存在,因为索引文档位于/project/public/index.php)和目录索引(mod_autoindex)大概是启用的(它应该被禁用,以便这样的请求导致 403 禁止访问)。

the difference is that the other website that is working is not on a subdomain and it’s on the root, so it’s not the same htaccess

我不确定为什么会有所不同?

使用 /project 子目录中的 .htaccess 文件,将您的 mod_rewrite(和 mod_dir)指令改为:

DirectoryIndex index.php
Options -Indexes

RewriteEngine on
RewriteCond  !^public/(index\.php|images|assets|css|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) public/index.php/ [L]

第一个条件中 robots\.txtfavicon\.ico 的存在意味着您正在从文档根目录重写请求。由于搜索引擎请求 /robots.txt(在文档根目录中),而不是 /project/robots.txt(或 /project/public/robots.txt)。 /favicon.ico也是如此。如果您不重写这两个请求,则不需要这两个条目。

这还假设您使用 public 子目录直接链接到您的静态资源。例如。 /projects/public/images/foo.jpg。这不一定是可取的,因为它在 URL 路径中公开了 /public。用户不一定会看到它,因为它在浏览器的地址栏中不直接可见,但搜索引擎和任何查看 HTML 源/网络流量的人都会看到它。

补充一下,第一个 条件(即 RewriteCond 指令)“只是”一个 opimisation。如果设置不正确,您的网站可能会正常运行,您看不到任何区别,只是它会执行比需要执行的更多的文件系统检查。

替代结构

另一种方法是有两个 .htaccess 文件。一个基本的 /project/.htaccess 文件,它只是将 everything 重写到 public 子目录和一个更全面的 (CI) .htaccess 文件 /project/public/.htaccess 实际上将请求路由到 CI。然后,这允许您从 all URLs 中省略 public,包括 URLs 到您的静态资源。

例如:

/project/.htaccess

DirectoryIndex index.php
Options -Indexes

RewriteEngine On

# Unconditionally rewrite everything to the "public" subdirectory
RewriteRule (.*) public/ [L]

/project/public/.htaccess

子目录 .htaccess 文件中 mod_rewrite 指令的存在自然会阻止父目录中 RewriteRule 指令的重写循环。 (假设 mod_rewrite 继承尚未启用。)

RewriteEngine on

RewriteCond  !^(index\.php|images|assets|css|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php/ [L]

<IfModule mod_headers.c>
  <FilesMatch "\.(ttf|ttc|otf|eot|woff|woff2|font.css|css|js)$">
    Header set Access-Control-Allow-Origin "*"
  </FilesMatch>
</IfModule>