View Single Post
Old 01-19-2008, 09:04 PM   #2 (permalink)
xenon
The Frequenter
Newcomer 
 
xenon's Avatar
 
Join Date: Dec 2007
Location: Bucharest, Romania
Posts: 438
Thanks: 3
xenon is on a distinguished road
Default

The name for the file is randomly generated after you upload it, and that link represents nothing but a truncation of a real file path. You can do that easily by writing a little htaccess file:

Code:
RewriteEngine On

RewriteRule ^~([a-zA-Z0-9])$ /some/path/on/server/script.php?process=$1
...for example. Get your script to work correctly first, and after that you take care of the urls. But to make it easier, don't hard code them (the urls).
__________________
I have optimistic thoughts, even though sometimes (if not always) life's a bitch.
xenon is offline  
Reply With Quote