Aaron99

msg:4524086 | 6:48 am on Dec 1, 2012 (gmt 0) |
Yes through .htaccess you can redirect these urls and it's working fine here.
|
g1smd

msg:4524102 | 10:51 am on Dec 1, 2012 (gmt 0) |
Why redirect (i.e. return 301 status)? Why not just a straight link to the new URL?
|
whatson

msg:4524196 | 7:13 pm on Dec 1, 2012 (gmt 0) |
Ok sure, I would rather not use a redirect, how do I do it without a redirect, or without using a submit button?
|
lexipixel

msg:4526167 | 9:33 pm on Dec 8, 2012 (gmt 0) |
<html> <head> <title>URL Select</title> <script type="text/javascript"> function goToUrl() { var newurl; newurl = document.getElementById('urlselector').value; document.location.href = newurl; } </script> </head> <body> <form> <select id="urlselector" onchange="goToUrl();"> <option value="">- select -</option> <option value="http://www.bing.com">Bing</option> <option value="http://www.google.com">Google</option> <option value="http://www.yahoo.com">Yahoo!</option> </select> </form> </body> </html>
|
|
|
|