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 爬取1-112页所有帖子的标题但是12页后要登录后才能 我使用selenium模拟登录 账号密码输入后 会报错 不知道怎么弄了
  • ¥30 关于用python写支付宝扫码付异步通知收不到的问题
  • ¥50 vue组件中无法正确接收并处理axios请求
  • ¥15 隐藏系统界面pdf的打印、下载按钮
  • ¥15 MATLAB联合adams仿真卡死如何解决(代码模型无问题)
  • ¥15 基于pso参数优化的LightGBM分类模型
  • ¥15 安装Paddleocr时报错无法解决
  • ¥15 python中transformers可以正常下载,但是没有办法使用pipeline
  • ¥50 分布式追踪trace异常问题
  • ¥15 人在外地出差,速帮一点点