Technical issue url .com or .com/en.html

Junoseo

Newbie
Joined
Oct 22, 2016
Messages
15
Reaction score
0
Hey guys,

I am reviewing a website with this url ending by .com/en.html
It is for an english website that sell products all over the world and the website is in english.
The original url was ending by .com/ and it was redirected to .com/en.html
I don't know why this redirect was made.
My questions are:
is it good for a website to have a homepage url that ends with .html ?
why did they add /en? Normally you add this when you want a language selector but they don't have any


I am pretty lost so if you can help that would be great!
 
It's okay for a site to end in .html; it's difficult to say if Google prefers it or not, but I doubt it's a huge ranking factor.

They could have 301'd the site to /en.html so the default language is English? Without seeing the site I cannot say for sure.

You can add this to the site's .htaccess file to remove the .html if you'd prefer:

Code:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html

Hope this helps!
 
Hey guys,

I am reviewing a website with this url ending by .com/en.html
It is for an english website that sell products all over the world and the website is in english.
The original url was ending by .com/ and it was redirected to .com/en.html
I don't know why this redirect was made.
My questions are:
is it good for a website to have a homepage url that ends with .html ?
why did they add /en? Normally you add this when you want a language selector but they don't have any


I am pretty lost so if you can help that would be great!

I don't seen any technical problem with that.
On the SEO side, the homepage will lose some juice if websites links to the root domain and it keep being redirected.
 
It's okay for a site to end in .html; it's difficult to say if Google prefers it or not, but I doubt it's a huge ranking factor.

They could have 301'd the site to /en.html so the default language is English? Without seeing the site I cannot say for sure.

You can add this to the site's .htaccess file to remove the .html if you'd prefer:

Code:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html

Hope this helps!
When I crawled the website I have seen they have done a 301 redirect from .com to .com/en.html. indeed the default page is english. however when I do a brand search on Google "/en.html" is not indexed only .com is. So I really don't know why they did it.
 
I don't seen any technical problem with that.
On the SEO side, the homepage will lose some juice if websites links to the root domain and it keep being redirected.
thanks, normally when you
I don't seen any technical problem with that.
On the SEO side, the homepage will lose some juice if websites links to the root domain and it keep being redirected.
thanks, a 301 redirect was done from te root domain to /en.html. but when you do a 301 redirect the new page should be indexed by google but that's not the case. when i do a brand search on search engine, only the root domain url appear
 
If they dont offer other languages, then its pointless and could only do damage. Not to say tha it is doing damage, just that it wouldnt be doing any good.

Im not a fan of .html in urls either if it can be avoided, i dont think there is really any seo downside to it though.
 
If they dont offer other languages, then its pointless and could only do damage. Not to say tha it is doing damage, just that it wouldnt be doing any good.

Im not a fan of .html in urls either if it can be avoided, i dont think there is really any seo downside to it though.
they offer other language, however for the other countries the website has another url structure it's "country.website.com" appart from japan which is /jp
 
they offer other language, however for the other countries the website has another url structure it's "country.website.com" appart from japan which is /jp
Its redundant in that case.

/index.html would work fine for lan1.domain.com and lan2.domain.com.

I cant see any reason to have it as lan1.domain.com/lan1index.html.
 
Back
Top