I was having a problem with one of my sites where, for reasons unknown, WordPress was inserting an unwanted extra backslash after the domain name. For example,

garyharvey.net//whatever

I searched far and wide for the answer but my online friend Frank of C-4.us has sent me the answer. It’s in this page…

http://www.mydigitallife.info/2008/07/21/redirect-or-rewrite-to-remove-double-or-multiple-slashes-in-url/

In brief, just add this to your .htaccess file…

# Remove multiple slashes anywhere in URL
RewriteCond %{REQUEST_URI} ^(.*)//(.*)$
RewriteRule . %1/%2 [R=301,L]


Tagged with:

Filed under: Personal Blog

Like this post? Subscribe to my RSS feed and get loads more!