摘要:
server { listen *:80; server_name www.mydomain.com *.mydomain.com; root /var/www/www.mydomain.com/web; if ($http_host != "www.mydomain.com") { rewrite ^ http://www.mydomain.com$request_uri permanent; } index index.php index.html; location = /... 阅读全文