我有php网站,我创建了.htaccess文件。我有两个规则。一个用于强制www,另一个用于固定链接。
我想更改以下网址
http://www.yatha.tv/play.php?vid=1437&id=1
到
http://www.yatha.tv/1437/1.html
但这条规则不会改变
RewriteRule ^([^/]*)/([^/]*)\.html$ /play.php?vid=$1&id=$2 [L]
<IfModule mod_rewrite.c>
Options +FollowSymLinks
Options +Indexes
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^yatha\.tv$
RewriteRule ^(.*)$ http://www.yatha.tv/$1 [R=301,L]
RewriteRule ^([^/]*)/([^/]*)\.html$ /play.php?vid=$1&id=$2 [L]
</IfModule>