我有 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>