• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • This community is user driven. Be polite with other users.
    • We recommend purchasing a Chevereto license to participate in this community.
    • Purchase a Community Subscription to get even faster ticket response times.

Hide ?v= in image URL

karma23

Chevereto Noob
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
 
Try ".htaccess hack"

Code:
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🙂
 
Back
Top