标签: php .htaccess url-rewriting request.querystring
我的.htaccess文件中有此规则:
.htaccess
Options +FollowSymLinks RewriteEngine on RewriteRule ^pages/([a-zA-Z0-9_-]+)$ pages.php?alias=$1 [L]
URL结构类似于网站/页面/关于我们
其中about-us是页面的别名。
在pages.php中,我试图通过$_GET["alias"]或$_REQUEST["alias"]获取别名的值,但没有获取任何值。
$_GET["alias"]
$_REQUEST["alias"]