0

我想知道是否有人可以解释这条规则的含义:

<IfModule mod_rewrite.c>
        RewriteEngine On
        RewriteRule (.*)\.html$ news.php?name=$1
</IfModule>
4

2 回答 2

1

它会翻译如下 URL:

/foo.html

进入如下网址:

/news.php?name=foo

http://httpd.apache.org/docs/current/mod/mod_rewrite.html

于 2012-04-05T02:09:45.790 回答
1

匹配 URL 字符串中以 .html 结尾的任何内容。将 .html 之前和域名之后的文件部分作为 $_GET['name'] 传递给 news.php 脚本。

于 2012-04-05T02:10:17.753 回答