Rgd:HTaccess重写规则通过GET

时间:2015-08-14 12:13:04

标签: php apache .htaccess mod-rewrite

IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^myfile/(.+)?$ chapter.php?id=$1 [QSA,L]
RewriteRule ^myfile/(.+)/(.+)?$ read.php?id=$1&num=$2 [QSA,L]
</IfModule>

我尝试了以下

http://www.example.com/myfile/hellopanda

以及

http://www.example.com/myfile/hellopanda/123

在myfile的文件夹中,有2个文件,read.php&amp; chapter.php执行以下操作

print_r($_GET);

然而,当我尝试上面的2 url i键时,它给我一个404错误。我确实启用了apache重写,并在我的目录中设置了规则。任何人都知道我是否在.htaccess中做错了吗?

感谢

0 个答案:

没有答案