https://example.com adresini https://www.example.com adresine nasıl yönlendirebilirim?
Kullandığım nginx ayarı şöyle:
server {
if ($host = www.koray.dev) {
return 301 https://$host$request_uri;
}
if ($host = koray.dev) {
return 301 https://$host$request_uri;
}
listen 80;
server_name koray.dev www.koray.dev;
return 404;