Posted in domains
5667
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
30
This Month
262
This Year
685

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
Ever tried. Ever failed. No matter. Try again. Fail again. Fail better. You won't believe what you can accomplish by attempting the impossible with the courage to repeatedly fail better.
Unknown
Random CSS Property

saturate()

The saturate() CSS function super-saturates or desaturates the input image. Its result is a <filter-function>.
saturate() css reference