htaccess URL重写不使用dot

时间:2013-05-03 05:49:51

标签: .htaccess

我写了以下.htaccess

RewriteEngine On
RewriteRule ^([A-Za-z0-9-]+)/?$ profile.php?profileId=$1 [NC,L]

如果我使用以下用户名,它会成功执行。

 1. site.com/username
 2. site.com/username32

以下用户名无效

 1. site.com/user.name.32

我认为问题与.htaccess有关。任何人请建议我工作.htaccess

1 个答案:

答案 0 :(得分:1)

RewriteEngine on
RewriteRule ^(.+)$ profile.php?profileId=$1 [QSA,L]

如果有效,请告诉我。