Skip to content

Month: April 2020

Htaccess Redirect With Query String TO File In A Different Directory

Htaccess Redirect With Query String TO File In A Different Directory <IfModule mod_rewrite.c> RewriteEngine on RewriteRule ^video.php https://domain.name/folder1/folder2%{REQUEST_URI} [R=302,NC] </IfModule> #if your query strnig is as such, index.php?q=1&b=2 #then %{REQUEST_URI} will create the url like so https://domain.name/folder1/folder2/index.php?q=1&b=2  

Enjoyed the content ? Share it with your friends !

FluidPlayer With Logo Example Code

FluidPlayer With Logo Example Code Here’s an example of using fluidplayer video with logo, in case anyone needs it. The documentation for FluidPlayer logo is here. <video id=’fp-core-video-0′ src=’https://cdn.fluidplayer.com/videos/valerian-480p.mkv’ style=’min-width:600px;min-height:380px;’> </video> <link rel=”stylesheet” href=”https://cdn.fluidplayer.com/v2/current/fluidplayer.min.css” type=”text/css”/> <script src=”https://cdn.fluidplayer.com/v2/current/fluidplayer.min.js”></script> <script> fluidPlayer( ‘fp-core-video-0’,…

Enjoyed the content ? Share it with your friends !