After using the latest .htaccess generator on vBulletin 3.6.0, I had problems with the member.php page giving a 404 error. I added these two lines to my .htaccess file to fix it:
RewriteRule ^u-([A-Za-z0-9\-]+)-([0-9]+).html$ member.php?u=$2&%{QUERY_STRING}&is_vrewrite=yes [L]
RewriteRule ^u-([A-Za-z0-9\-]+)-([0-9]+).html/$ member.php?u=$2&%{QUERY_STRING}&is_vrewrite=yes [L]
This takes care of the URL both with and without a trailing slash.
|