在清除URL .htaccess重写后获取URL参数

时间:2015-06-28 13:03:10

标签: php apache .htaccess mod-rewrite url-rewriting

我使用下面的.htaccess 清理http://example.com/tutorial?id=hellohttp://example.com/tutorial/hello的网址(将?id = 更改为 /

RewriteEngine On
RewriteRule ^tutorial/([^/\.]+)/?$ tutorial.php?id=$1 [L]

问题是重写后我不能再获取id参数:

PHP:

if (isset($_GET['id'])) {
echo $_GET['id'];
}

重写后我需要更改什么才能获取id参数?

0 个答案:

没有答案