I use jquery validator for url & it return true for this url:
http://www.abc...com
I'm not sure if it is a valid url?
I use jquery validator for url & it return true for this url:
http://www.abc...com
I'm not sure if it is a valid url?
Yes A url with many dots is valid. However a domain name with multiple consecutive dots is not valid since the length of each label has to be more than 0.
See:
https://lists.isc.org/pipermail/bind-users/2011-January/082725.html
To be conversant with URL semantics, you would need to read:
Which characters make a URL invalid?
In short there could be as many dots in the domain name section. However there should be at least a label of 1 to 63 characters between these dots. Refer to:
http://en.m.wikipedia.org/wiki/Domain_Name_System#Domain_name_syntax
It seems like it is valid.
See this description of allowed characters in Unreserved Section:
https://www.rfc-editor.org/rfc/rfc3986#section-2.3
2.3. Unreserved Characters
Characters that are allowed in a URI but do not have a reserved
purpose are called unreserved. These include uppercase and lowercase
letters, decimal digits, hyphen, period, underscore, and tilde.
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"