【发布时间】:2015-03-05 16:14:46
【问题描述】:
我的规范网址指向 ://www.example.com/xyz/(没有 http),现在谷歌机器人正在使用以下网址访问我的服务器
http://www.example.com/xyz/:/www.example.com/xyz/
我希望他们重定向回http://www.example.com/xyz/
【问题讨论】:
标签: regex .htaccess iis web-config
我的规范网址指向 ://www.example.com/xyz/(没有 http),现在谷歌机器人正在使用以下网址访问我的服务器
http://www.example.com/xyz/:/www.example.com/xyz/
我希望他们重定向回http://www.example.com/xyz/
【问题讨论】:
标签: regex .htaccess iis web-config
htaccess 解决方案
重写规则 ^([^/]+)/([^/]+)/:([a-zA-Z0-9-./]+) /$1/$2/ [L]
【讨论】: