Posted in domains
5536
5:42 am, June 10, 2022
 

redirect www to non www

usually i point the www to the ip address of the server and then create a redirect block on nginx, but this seems like extra work for nothing. 

Tested the cname point to the address but this seems to not work.

going to try a url redirect record, but not sure if this is correct either

I tested this domain name setting change, but it seems that a nginx block is still better to do this. Add this above your current block to catch the www and redirect it. 

NGINX

server {
    listen 80;
    server_name www.example.com;
    return 301 $scheme://example.com$request_uri;
}

Ok so this still was not working, you have to add the return in the main server block where the cert is added, as i had a seperate config for the www version of the site. 

It was ignoring the 80 as thats non ssl, but if it is set to https it checks the main block and ignores the 80 or http. 

Adding this line fixed it for me, in the www block. 

NGINX

server {
    root /var/www/html/kruxor.com;
    server_name www.kruxor.com;
    return 301 $scheme://kruxor.com$request_uri;
}

View Statistics
This Week
123
This Month
418
This Year
554

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Items in domains
Search Code
Search Code by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
"We're tight-fisted with property and money, yet think too little of wasting time, the one thing about which we should all be the toughest misers.”
Seneca
Random CSS Property

border-top-color

The border-top-color CSS property sets the color of an element's top border. It can also be set with the shorthand CSS properties border-color or border-top.
border-top-color css reference