relative redirect not working
-
According to FAQ, you should be able to create redirects relative to the site’s URL. But I am not. I am starting with just the slash (/), but the browser reports an error:
“Please enter a URL.”
According to page source code, there is an
INPUT type="url"element, which certainly causes problems. See W3C specifications here:
http://www.w3.org/TR/html-markup/input.url.html#input.url.attrs.typeThere is an absolute URL needed in order to be valid, which means current implementation does not work for anybody.
Solution might be to use the
patternattribute, see e.g. here:
http://stackoverflow.com/a/13821385So, how do we solve it?
The topic ‘relative redirect not working’ is closed to new replies.