0

如何在 httaccess 中使用 AliasMatch 将这样的 url 传输example.com/userName 到此 url : example.com/user.php?name=userName

4

1 回答 1

1

您不需要使用别名。试试下面的代码:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ /user.php?name=$1 [L]
于 2013-07-16T20:04:41.240 回答