次のnginx構成フラグメントがあります:
server {
listen 80;
server_name mydomain.io;
root /srv/www/domains/mydomain.io;
index index.html index.php;
access_log /var/log/nginx/domains/mydomain.io/access.log;
error_log /var/log/nginx/domains/mydomain.io/error.log;
location ~\.php {
try_files $uri =404;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_intercept_errors on;
fastcgi_pass 127.0.0.1:9000;
include /etc/nginx/fastcgi_params;
}
}
both
まず、サーバー ブロックをhttp://www.mydomain.ioとhttp://mydomain.ioに応答させるにはどうすればよいですか。第二に、 http://www.mydomain.ioから来ている場合は強制的にhttp://mydomain.ioにリダイレクトしたいと考えています。
ありがとう。