gpt4 book ai didi

.htaccess - 使用子域/文件夹上的 .htaccess 重写规则删除 CI4 public/index.php

转载 作者:行者123 更新时间:2023-12-04 07:58:18 24 4
gpt4 key购买 nike

我有一个名为 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 $1 !^(index\.php|images|assets|css|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./public/index.php/$1 [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 已经在公用文件夹中附带了一个 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/$1 [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 $1 !^public/(index\.php|images|assets|css|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) public/index.php/$1 [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 指令)“只是”一个优化。如果设置不正确,您的站点可能会正常运行,您看不到任何区别,只是它会执行比需要执行的更多的文件系统检查。

替代结构

另一种方法是使用两个 .htaccess 文件。一个基本的 /project/.htaccess 文件,它只是将 所有内容 重写到 public 子目录和一个更全面的 (CI) .htaccess 文件位于 /project/public/.htaccess,它实际上将请求路由到 CI。然后,您可以从所有 URL 中省略public,包括静态资源的URL。

例如:

/project/.htaccess

DirectoryIndex index.php
Options -Indexes

RewriteEngine On

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

/project/public/.htaccess

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

RewriteEngine on

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

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

关于.htaccess - 使用子域/文件夹上的 .htaccess 重写规则删除 CI4 public/index.php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66592111/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com