微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

如何解决如何使用条件重定向 .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]

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。