Posted in domains
5690
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
285
This Year
708

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
I believe that in order to better your knowledge base, it takes a lot of failing in order to succeed. I don't consider anything a failure as long as you get back up and you learn from your own mistakes.
Unknown
Random CSS Property

scale

The scale CSS property allows you to specify scale transforms individually and independently of the transform property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the transform value.
scale css reference