.htaccess / 重定向到 https://www.example.com 和虚拟文件夹访问

发布于 2024-08-08 16:27:40 字数 427 浏览 6 评论 0原文

我有一个域名 example.com。我希望每当键入以下内容之一时,用户都会被重定向到 https://www.example.com

  • http://example.com
  • http: //www.example.com
  • https://example.com

我还需要重定向访问 /asdf (或 /asdf/< /code>) 到 /index.php?folder=asdf

我发现了一些执行第一部分的代码示例,但关于它们的有效性始终存在争议。


编辑:(需要更多帮助!:))

I have a domain example.com. I want users to be redirected to https://www.example.com whenever one of the following is typed:

  • http://example.com
  • http://www.example.com
  • https://example.com

I also need to redirect people accessing /asdf (or /asdf/) to /index.php?folder=asdf.

I found some examples of code doing the first part, but there was always a debate about their effectiveness.


Edit: (need some more help! :))

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧城烟雨 2024-08-15 16:27:40

尝试这些 mod_rewrite 规则:

RewriteEngine on

RewriteCond %{HTTP_HOST} !=www.example.com [OR]
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://www.example.com%{REQUEST_URI} [L,R=301]

RewriteCond $1 !=index.php
RewriteRule ^([^/]+)/?$ index.php?folder=$1 [L]

但我建议您只允许一个 URL表示法,有或没有尾部斜杠的表示法。

Try these mod_rewrite rules:

RewriteEngine on

RewriteCond %{HTTP_HOST} !=www.example.com [OR]
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://www.example.com%{REQUEST_URI} [L,R=301]

RewriteCond $1 !=index.php
RewriteRule ^([^/]+)/?$ index.php?folder=$1 [L]

But I recommend you to just allow one URL notation, the one with or without the trailing slash.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文