I need help in solving the issue with my htaccess rewrite for multiple php file. No matter what I do the the last condition of vod movie is not working and always point to the first php file new.php . The first three are working fine because they point to same file. I have read in here that they shouldn't be ambiguous but I don't know how to do it or solve it. Please help me thanks.
RewriteEngine ON
RewriteBase /
RewriteCond %{HTTP_HOST} ^test\.com$ [NC]
RewriteRule ^live/([^/]*)/([^.]*)/([^/]*)\.m3u8/?$ new.php?code=$1&c=$3&type=m3u8 [NC,L]
RewriteCond %{HTTP_HOST} ^test\.com$ [NC]
RewriteRule ^live/([^/]*)/([^.]*)/([^/]*)\.ts/?$ new.php?code=$1&c=$3&type=ts [NC,L]
RewriteCond %{HTTP_HOST} ^test\.com$ [NC]
RewriteRule ^([^/]*)/([^.]*)/([^/]*)?$ new.php?code=$1&c=$3 [NC,L]
RewriteCond %{HTTP_HOST} ^test\.com$ [NC]
RewriteRule ^movie/([^/]*)/([^.]*)/([^/]*)\.mp4/?$ /vod.php?code=$1&c=$3 [NC,L]
Could you please try following, based on your shown samples only. Please do clear your browser cache before testing URLs.
RewriteEngine ON
RewriteBase /
RewriteCond %{HTTP_HOST} ^test\.com$ [NC]
RewriteRule ^live/([^/]*)/([^/]*)/([^.]*)\.m3u8/?$ new.php?code=$1&c=$3&type=m3u8 [NC,L]
RewriteCond %{HTTP_HOST} ^test\.com$ [NC]
RewriteRule ^live/([^/]*)/([^/]*)/([^.]*)\.ts/?$ new.php?code=$1&c=$3&type=ts [NC,L]
RewriteCond %{HTTP_HOST} ^test\.com$ [NC]
RewriteRule ^movie/([^/]*)/([^/]*)/([^/]*)/([^.]*)\.mp4/?$ vod.php?code=$1&c=$3 [NC,L]
RewriteCond %{HTTP_HOST} ^test\.com$ [NC]
RewriteRule ^([^/]*)/([^/]*)/([^/]*)/?$ new.php?code=$1&c=$3 [NC,L]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With