Question

i have a wordpress website in the directory '' / Video/ '' and another PHPMELODY vIDEO SCRIPT in the sub directory /Video/Play/. in this case i would like to redirect all URLs in the directory called '' Video'' [ except ''Play/] to /Video/Play/index.html.
I really need help, Thanks !

******Let me make it clear*********
www.mysite.com/Video/--------- wordpress site

www.mysite.com/Video/Play/---- PhpMelody Site*

i want all URLs which are in the "Video" Folder to be redirected to either in the '' Play'' folder like this www.mysite.com/Video/Play/index.html OR to www.mysite.com/index.php. Just EXCLUDE directory( folder) "play" from redirecting.

*********************

#BEGIN mod_gzip-Turn on compression
<ifModule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_dechunk Yes
mod_gzip_item_include file .(html?|txt|css|js|php|pl)$
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text/.*
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</ifModule>
# END mod_gzip


 # BEGIN Expire cach headers
<ifModule mod_expires.c>
 ExpiresActive On
ExpiresDefault "access plus 1 seconds"
ExpiresByType text/html "access plus 1 seconds"
ExpiresByType image/gif "access plus 2592000 seconds"
ExpiresByType image/jpeg "access plus 2592000 seconds"
ExpiresByType image/png "access plus 2592000 seconds"
ExpiresByType text/css "access plus 604800 seconds"
 ExpiresByType text/javascript "access plus 216000 seconds"
ExpiresByType application/x-javascript "access plus 216000 seconds"
</ifModule>
# END Expirecach  headers


 #BEGIN Cache-Control

 <ifModule mod_headers.c>
  <filesMatch "\\.(ico|pdf|flv|jpg|jpeg|png|gif|swf)$">
  Header set Cache-Control "max-age=2592000, public"
 </filesMatch>
 <filesMatch "\\.(css)$">
 Header set Cache-Control "max-age=604800, public"
</filesMatch>
 <filesMatch "\\.(js)$">
 Header set Cache-Control "max-age=216000, private"
 </filesMatch>
 <filesMatch "\\.(xml|txt)$">
 Header set Cache-Control "max-age=216000, public, must-revalidate"
 </filesMatch>
 <filesMatch "\\.(html|htm|php)$">
Header set Cache-Control "max-age=1, private, must-revalidate"
</filesMatch>
</ifModule>
#END Cache-Control

#301 redirect URL Canonication
RewriteEngine On
RewriteCond %{HTTP_HOST} ^ephremtube\.com
RewriteRule ^(.*)$ http://www.ephremtube.com/$1 [R=permanent,L]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /.*index\.php\ HTTP/
 RewriteRule ^(.*)index\.php$ /$1 [R=301,L]
 # Mobile redirection
 <IfModule mod_rewrite.c>
 RewriteEngine On
 RewriteCond %{HTTP_USER_AGENT} "android|blackberry|googlebot-  
 mobile|iemobile|ipad|iphone|ipod|opera mobile|palmos|webos" [NC]
 RewriteRule ^$ http://www.ephremtube.com/m/ [L,R=302]
 </IfModule>
 #BEGIN  pass the default character set
 # END  pass the default character set
Was it helpful?

Solution

RewriteEngine On
RewriteCond  %{REQUEST_URI}  ^/Video  [NC]
RewriteCond  %{REQUEST_URI}  !^/Video/Play  [NC]
RewriteRule  ^Video/?(.*)$  /Video/Play/index.html  [R=301,L]

could work, if I understood your request. It will handle any URI that begins with /Video AND is not beginning with /Video/Play.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top