views:

75

answers:

1

website.com/yt/MGEPkLPGB6E

would forward to

youtube.com/watch?v=MGEPkLPGB6E

+1  A: 

Something like this in a .htaccess file, or in your Apache's configuration, should do the trick :

RewriteEngine On
RewriteRule ^yt/(.*)$   http://youtube.com/watch?v=$1

Of course, this is if the mod_rewrite module is enabled.

Pascal MARTIN