www or no www

Discussion Of Legal Topics Anything Goes
Post Reply
Austin
Posts: 329
Joined: July 13th, 2018, 6:30 pm
Referrals: 1

www or no www

#1

Post by Austin » March 10th, 2023, 5:37 pm

Any point to adding a 'www' to urls or go with just https:// and no www?






Matty2
Posts: 15
Joined: December 12th, 2022, 6:40 am

#2

Post by Matty2 » March 10th, 2023, 5:56 pm

Use he WWW people are used to typing it out.






User avatar
HeidiHoe
Posts: 1409
Joined: February 3rd, 2018, 12:20 pm
Title: Resident Genius

#3

Post by HeidiHoe » March 10th, 2023, 7:02 pm

Austin wrote:
March 10th, 2023, 5:37 pm
Any point to adding a 'www' to urls or go with just https:// and no www?
My personal preference is going naked, but it doesn't really matter. Just choose one and redirect the other to it. Don't use both and not use a redirect because it's not ideal for SEO.


Soylent Green is People!

User avatar
TheButcher
Posts: 10457
Joined: February 2nd, 2018, 11:48 am
Title: I like weekends
Referrals: 1
Contact:

#4

Post by TheButcher » March 10th, 2023, 7:17 pm

Old habit I always set up scripts with the www but in my htaccess I have a line if you need it I will get it which redirects the non-www to www.



CanadianChick
Posts: 622
Joined: April 10th, 2018, 9:07 pm

#5

Post by CanadianChick » March 11th, 2023, 10:03 am

Any seo advantage to one or the other?






User avatar
TheButcher
Posts: 10457
Joined: February 2nd, 2018, 11:48 am
Title: I like weekends
Referrals: 1
Contact:

#6

Post by TheButcher » March 12th, 2023, 2:35 pm

CanadianChick wrote:
March 11th, 2023, 10:03 am
Any seo advantage to one or the other?
Technically the www is a subdomain if you think about it



User avatar
HeidiHoe
Posts: 1409
Joined: February 3rd, 2018, 12:20 pm
Title: Resident Genius

#7

Post by HeidiHoe » March 12th, 2023, 9:04 pm

TheButcher wrote:
March 12th, 2023, 2:35 pm
CanadianChick wrote:
March 11th, 2023, 10:03 am
Any seo advantage to one or the other?
Technically the www is a subdomain if you think about it
Yep, it is. If you look at your dns settings you'll see that the www sub is pointed at the same location as your naked domain. That's usually the default setup. You could actually change that if you want. There's no rule saying that's what you have to do.


Soylent Green is People!

24alex
Posts: 1353
Joined: March 2nd, 2018, 12:51 pm
Referrals: 21

#8

Post by 24alex » March 15th, 2023, 9:24 am

Make it less not more when people have to type in a url, that is me.






User avatar
Zug
Posts: 73
Joined: February 11th, 2023, 9:19 am
Location: America
Title: Confirmed Caveman
Referrals: 4
Contact:

#9

Post by Zug » March 15th, 2023, 11:46 am

Choose one or the other and stick with it. Either way, use your htaccess file to determine which one is used through-out your domain. People, generally, will not type in www. Unless they live in a cave and have no clue of internet usage.


Web Model Portal - A model portal dedicated to beautiful girls and their hot model photos. WebmodelsWebmastersWebhosting
©2003-2023 by Zug™

born2bewild
Posts: 927
Joined: May 22nd, 2018, 6:47 pm
Title: work hard play hard

#10

Post by born2bewild » March 16th, 2023, 6:38 am

Zug wrote:
March 15th, 2023, 11:46 am
Choose one or the other and stick with it. Either way, use your htaccess file to determine which one is used through-out your domain. People, generally, will not type in www. Unless they live in a cave and have no clue of internet usage.
Read the underlined sentence






User avatar
Zug
Posts: 73
Joined: February 11th, 2023, 9:19 am
Location: America
Title: Confirmed Caveman
Referrals: 4
Contact:

#11

Post by Zug » March 16th, 2023, 12:59 pm

Zug wrote:
March 15th, 2023, 11:46 am
... use your htaccess file to determine which one is used through-out your domain.
.htaccess file .. works on my server but may not on everyone else's.

Code: Select all

# Redirect www urls to non-www
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.YOURDOMAIN\.com [NC]
RewriteRule (.*) https://YOURDOMAIN.com/$1 [R=301,L]


Web Model Portal - A model portal dedicated to beautiful girls and their hot model photos. WebmodelsWebmastersWebhosting
©2003-2023 by Zug™

Aleks
Posts: 4
Joined: March 18th, 2023, 8:34 am

#12

Post by Aleks » March 19th, 2023, 9:38 am

Adding the www is pointless now a days.






User avatar
T.B.W
Posts: 789
Joined: March 26th, 2018, 1:34 pm

#13

Post by T.B.W » March 22nd, 2023, 12:59 pm

Zug wrote:
March 16th, 2023, 12:59 pm
Zug wrote:
March 15th, 2023, 11:46 am
... use your htaccess file to determine which one is used through-out your domain.
.htaccess file .. works on my server but may not on everyone else's.

Code: Select all

# Redirect www urls to non-www
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.YOURDOMAIN\.com [NC]
RewriteRule (.*) https://YOURDOMAIN.com/$1 [R=301,L]
It looks right






www or no www

Post Reply