Why Grails see URLs without http:// (like www.google.com) as invalid? Only http://google.com and http://www.google.com are ok. Is there any way to fix that ?
|
feedback
|
|
If you read RFC 1738 (Uniform Resource Locators), it is clear that the URL scheme (in your case, http://), is a full part of URLs. Scheme define the meaning of the rest of the URL, and thus, can't be omitted. For instance http://www.google.com is definitely not the same ressource as https://www.google.com, and you should be aware of that when you save a link. So URL like Fixing that should be easy if you know you expect an http URL:
should do the trick. | ||||
feedback
|