多域名怎么批量设置301跳转?123.com跳转到123.com:52
多域名怎么批量设置301跳转?123.com跳转到123.com:99
就是
123.com/123.html
456.com/123.html
789.com/123.html
批量把80端口跳转到其他端口如99端口
123.com:99/123.html
456.com:99/123.html
789.com:99/123.html
规则咋设置写法 如下所示,检测并且匹配任意域名非99端口时,全部进行跳转到99端口访问
全局跳转
RewriteEngine on
RewriteBase / #我这行是没有配置
RewriteCond %{SERVER_PORT} !^99$
RewriteRule ^.*$ http://%{SERVER_NAME}%{REQUEST_URI}
页:
[1]