使用 .htaccess 将所有 URI 请求(包括文件夹)重定向到 index.php?

问题描述 投票:0回答:1

我正在尝试配置 .htaccess 文件以将所有 URI 请求(包括文件夹)重定向到 index.php。这是我的根目录的结构:

  • 应用程序
  • 管理员
  • 公开
  • index.php
  • .htaccess

我的目标是按如下方式重定向请求:

www.example.com/anything -> 通过!成功重定向到index.php,没有HTTP错误。 www.example.com/admin -> 未通过!显示 HTTP 错误:禁止(您无权访问此资源。)

任何其他请求都可以正常工作,只有当我尝试访问包含同名文件夹的 URI 时,我会收到 http 禁止错误

我想将所有 URI 请求作为对 index.php 的普通 GET 请求来处理。我怎样才能实现这个目标?

这是我当前的 .htaccess 配置:

<IfModule mod_rewrite.c> 
    Options -MultiViews -Indexes +FollowSymLinks 

    # Turn rewriting on 
    RewriteEngine On
    RewriteBase /

    # Redirect http
    RewriteCond %{HTTPS} !=on
    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NE]

    # Redirect requests to index.php 
    RewriteCond %{REQUEST_FILENAME} !-f 
    RewriteCond %{REQUEST_FILENAME} !-d 
    RewriteRule ^(.*)$ index.php/$1 [NC,L,QSA] 

    # proc/self/environ? no way!
    RewriteCond %{QUERY_STRING} proc/self/environ [OR]

    # Block out any script trying to set a mosConfig value through the URL
    RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]

    # Block out any script trying to base64_encode crap to send via URL
    RewriteCond %{QUERY_STRING} base64_encode.*(.*) [OR]

    # Block out any script that includes a <script> tag in URL
    RewriteCond %{QUERY_STRING} (<|%3C).*script.*(>|%3E) [NC,OR]

    # Block out any script trying to set a PHP GLOBALS variable via URL
    RewriteCond %{QUERY_STRING} GLOBALS(=|[|\%[0-9A-Z]{0,2}) [OR]

    # Block out any script trying to modify a _REQUEST variable via URL
    RewriteCond %{QUERY_STRING} _REQUEST(=|[|\%[0-9A-Z]{0,2})

    # Send all blocked request to homepage with 403 Forbidden error!
    RewriteRule ^(.*)$ index.php [F,L]
</IfModule>
apache .htaccess mod-rewrite
1个回答
0
投票

您的实现本身对您收到的结果负责。 “它按实施方式工作”。但这可能与预期有所不同。

让我们仔细看看您的实现:

# Redirect requests to index.php 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^(.*)$ index.php/$1 [NC,L,QSA] 

第二个条件显式注意当请求的 URL 映射到服务器端文件系统中的文件夹时应用该规则。

然后,再往下:

# Send all blocked request to homepage with 403 Forbidden error!
RewriteRule ^(.*)$ index.php [F,L]

这就是我们正在寻找的:您的实现显式发送 403,这正是您所观察到的。

© www.soinside.com 2019 - 2024. All rights reserved.