.htaccess - htaccess URL rewriting not using dot -
i have written following .htaccess
rewriteengine on rewriterule ^([a-za-z0-9-]+)/?$ profile.php?profileid=$1 [nc,l]
its executing , if using following usernames.
1. site.com/username 2. site.com/username32
following username not working
1. site.com/user.name.32
i think issue .htaccess. please suggest me working .htaccess
rewriteengine on rewriterule ^(.+)$ profile.php?profileid=$1 [qsa,l]
if works let me know.
Comments
Post a Comment