Posted in domains
5878
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
117
This Month
281
This Year
896

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
You drown not by falling in the river, but by staying submerged.
Unknown
Random CSS Property

list-style-position

The list-style-position CSS property sets the position of the ::marker relative to a list item.
list-style-position css reference