regex - How to redirect video to another video? -
how redirect video video ?
for example: have 1 video: http://mywebsite.com/video.mp4
and when access 1 of videos below, content of above video showed. how ? thank !
http://mywebsite.com/1.mp4 http://mywebsite.com/2.mp4 http://mywebsite.com/3.mp4 http://mywebsite.com/4.mp4 ...
you can use code in document_root/.htaccess
file:
rewriteengine on rewritebase / rewriterule ^\d+\.mp4$ video.mp4 [l,nc]
Comments
Post a Comment