如何使用条件重定向 .htaccess 中的 URL?

问题描述

我的域名为 https://reg.bmi.id。我想让任何用户在 URL 重定向https://reg.bmi.id 之后输入任何内容

示例:

  • https://reg.bmi.id/admin 将被重定向https://reg.bmi.id
  • https://reg.bmi.id/asidjadhqowidhqohuqw 将被重定向https://reg.bmi.id
  • https://reg.bmi.id/asdjqoq/qdoqwun/qowidopq 将被重定向https://reg.bmi.id
  • https://reg.bmi.id/contact/contact.PHP 将被重定向https://reg.bmi.id

在例外情况下,如果用户精确地输入 https://reg.bmi.id/reg_pilot 则不会被重定向。它打开/reg_pilot

页面

这是我当前位于根文件夹中的 .htaccess:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.PHP$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.PHP [L]
</IfModule>
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-SSL} !on
RewriteCond %{HTTP_HOST} ^reg\.bmi\.id$ [OR]
RewriteCond %{HTTP_HOST} ^www\.reg\.bmi\.id$
RewriteRule ^/?$ "https\:\/\/reg\.bmi\.id\/" [R=301,L]

reg/pilot 是对该域上任何其他资源的引用。 /contact/contact.PHP 不存在。在域之后输入的除 /reg_pilot 之外的任何内容都应重定向

我几乎没有处理 .htaccess 的经验,非常感谢任何帮助

解决方法

根据您展示的样品,您可以尝试以下操作吗? 在测试您的网址之前,请务必清除浏览器缓存。

RewriteEngine On
##Setting rewrite base here.
RewriteBase /

##Checking for non https requests and applying https to it with/without www
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-SSL} !on
RewriteCond %{HTTP_HOST} ^(?:www\.)?reg\.bmi\.id$ [NC]
RewriteRule ^/?$ https://reg.bmi.id/ [R=301,L]

##Stopping/forbidding direct access of index.php here.
RewriteRule ^index\.php$ - [L,NC]

##Any non existing directory/file is served by php file.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !reg_pilot [NC]
RewriteRule ^ https://reg.bmi.id/ [R=301]
RewriteRule ^ index.php [NC,L]