Questions
-
Removing URL Parentheses in HTACCESS
I thought I'd come back and re-post the solution in case this shows up in SERPs or anyone other Moz members are looking for this answer (courtesy Noah Wooden of Izoox). HTACCESS: <ifmodule mod_rewrite.c="">RewriteEngine On # Strip set of opening-closing parenthesis from URL and 301 redirect. RewriteCond %{REQUEST_URI} [()]+ RewriteRule ^(.)[(]+([^)])[)]+(.*)$ /$1$2$3 [R=301,L]</ifmodule> Remember to put this in the proper 'order' on your htaccess file if you are doing any other redirecting. The code above 301 redirects URLs with parentheses into the exact same URL minus the parentheses.
Technical SEO Issues | | JaredMumford0