Janik von Rotz


1 min read

Redirected subdomains to domain

This post is part of my Your own Virtual Private Server hosting solution project.
Get the latest version of this article here: https://gist.github.com/9433480.

Introduction

A website has to be only accessible by one specific host name. Otherwise search engines will index your website two or more times. A lot of people think that a website should only be published as www.[host]. I think this is wrong, using the www section is a old fashioned way of how companies have structured their DNS records. There are users which still use the www before tipping an url and others who don’t. However we will allow both of them to access our website.

Requirements

Installation

Redirecting every possible subdomain f.g. containing www.example.org is easily redirected to a prefrered url by adding the following Nginx configuration to the host config file.

server{

    server_name *.[host];
    
    return 301 http://[host]$request_uri;
}
    

Test config and reload Nginx service.

sudo nginx -t && sudo service nginx reload

Source

Nginx server names
Nginx converting rewrite rules

Categories: Web server
Tags: domain , nginx , redirect , rewrite , subdomain
Improve this page
Show statistic for this page