Topic: Hide ?v= in image URL

I'm looking for a way to hide the ?v= in the URL of the image. I don't know if it's even possible. Basically, I notice that many image hosting services have URL's along the lines of http://imagehost.com/RaNd0m and I'm wondering if the same can be achieved here.

Thanks

Thumbs up

Re: Hide ?v= in image URL

Try ".htaccess hack"

RewriteRule ^([0-9]+)/$ /?v=$1 [QSA, L]
RewriteRule ^([0-9]+) /?v=$1 [QSA, L]

Now turning to the correct link without a "v" site will show you content with it.

If you want links to appear for users without the "v", then there should dig deeper:)

Thumbs up