redirect
我对我需要做的一些规则感到困惑production
。我已经看到a lot of examples in stackoverflow
了,他们已经建立了一些knowledge
关于重定向的内容。但是,除了重定向到新网址之外,我没有任何特定条件,exact query string
无论它是如何形成appended
的。
既然是在生产中,我确实有闲来无事的尝试和捕捉,所以我想尽可能地避免错误。这是我认为我应该做的:
<VirtualHost X.X.X.X:80>
ServerName mypoductionserver.com
ServerAlias cs.myproductionserver.com
LogLevel warn
ErrorLog /var/log/apache2/productionerror.log
CustomLog /var/log/apache2/productionaccess.log combined
RewriteCond %{QUERY_STRING} .
RewriteRule (.*) http://www.newproductionserver.com/? [R=301,L]
</VirtualHost>
感谢您的帮助