使用htaccess更改URL

时间:2014-12-17 22:31:03

标签: php apache .htaccess

现在我正在使用下面的代码更改网址;我现在也使用像

这样的网址
profile.php?id=Nickname

现在我只想用昵称

访问它
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !=f
RewriteRule ^([^\.]+)$ $1.php [NC]

1 个答案:

答案 0 :(得分:2)

我想你想要像

这样的东西
RewriteRule ^([0-9A-Za-z]+) profile.php?id=$1

您的版本无法使用,因为如果原始网址为profile,您重写的变量将始终为profile.php?id=Nickname