donglaoping9702 2017-05-11 23:50
浏览 43
已采纳

htaccess通过删除点从多个子域重定向

I have a set of sub-subdomains that I need to redirect in .htaccess. I'm not good at REGEX, and have failed to understand other posts I've read well enough to apply it to this situation.

My sites are laid out like this:

quark.subdomain.site.com
yy.subdomain.site.com
bit.subdomain.site.com
etc

Where the sub-subdomain can be anything, but the subdomain is always the same.

I need to redirect them to:

quarksubdomain.site.com
yysubdomain.site.com
bitsubdomain.site.com
etc

So basically, I just need to remove the dot.

I was able to get this far, using the answer from this question: .htaccess 301 redirect one subdomain to another, for multiple TLDs

But this is doing each sub-subdomain individually:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^quark.subdomain\.(.+)$ [NC]
RewriteRule ^ https://quarksubdomain.%1 [L,R=301]

RewriteCond %{HTTP_HOST} ^yy.subdomain\.(.+)$ [NC]
RewriteRule ^ https://yysubdomain.%1 [L,R=301]

But I have 30 or so of these sub-subdomains, so I'd like something more efficient.

1) Is there a wildcard method I can use to just remove the dot from any sub-subdomain of subdomain?

2) I am failing to pass any part of the address that comes after the domain.com/ . I am using CakePHP, so REQUEST_URI does not work, because it gives me address information that Cake hides. What is the best way to do this without using REQUEST_URI?

Bonus points for a link that explains the REGEX special characters for beginners. I would like to correct my ignorance.

  • 写回答

2条回答 默认 最新

  • douqiandai4327 2017-05-13 00:07
    关注

    After some trial and error, I was finally successful with the following:

    RewriteCond %{HTTP_HOST} ^(.+)\.subdomain\.(.*)$ [NC]
    RewriteRule ^(.*)$ https://%subdomain.%2/$1 [QSA,L,R=301]
    

    It correctly gets any prefix and appends it to the subdomain name, and also passes the locations following the .com/ correctly. I also made it domain insensitive, so it works natively on my development domain also.

    I can't give myself any bonus points though, because I still can't explain why it has to be exactly this way to pass the specific page address.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀