我使用下面的.htaccess 清理从http://example.com/tutorial?id=hello
到http://example.com/tutorial/hello
的网址(将?id = 更改为 / )
RewriteEngine On
RewriteRule ^tutorial/([^/\.]+)/?$ tutorial.php?id=$1 [L]
问题是重写后我不能再获取id参数:
PHP:
if (isset($_GET['id'])) {
echo $_GET['id'];
}
重写后我需要更改什么才能获取id参数?