Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
403 views
in Technique[技术] by (71.8m points)

apache - htaccess rewrite log to multiple php files

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]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...