重写角色不适用

时间:2014-08-20 03:14:39

标签: .htaccess mod-rewrite url-rewriting permalinks pretty-urls

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

0 个答案:

没有答案