I’ve been using the same redirect script for years.. with my current script, links will say http://www.mysite.com/goto/linkID=9 But I’m looking for a script where I can actually name the link.. instead of linked=9, I’d like to have a link that looks like: http://www.mysite.com/goto/somesite.com does anyone know of a script that can do this?
You could use this short url script. It allows you to disable the public form and gives you a private one in the admin area. NN
just create a php file in notepad and put this in it: <?php header( 'Location: http://www.somesite.com' ) ; ?> put them in a folder called "go" and you'll have http://www.yoursite.com/go/somesite.php
Thanks, I may end up doing that... but my first choice would be something that could count clicks. The script I'm currently using counts how many times a link has been clicked (I can reset at any time)..