Hi,

This is possible, open your htaccess file

Find

RewriteRule ^view/(.*)/(.*)/ view_video.php?id=$1 [L,QSA]

replace with

RewriteRule ^(\d+)/(.*)/ view_video.php?id=$1 [L,QSA]
RewriteRule ^view/(.*)/(.*)/ view_video.php?id=$1 [L,QSA]

then you have to change view video url in your tpl files.

from:http://mysite.com/view/2/video-name/

to:http://mysite.com/2/video-name/

Thanks

Buyscripts Team