url rewrite backslahes
#————————————————————————– # Prevent double slashes // to single / — by: KLE RewriteCond %{REQUEST_URI} ^(.*)//(.*)$ RewriteRule . %1/%2 [R=301,L] # Rewrite backslash ‘\’ to fowardslash ‘/’ — by: KLE RewriteCond %{REQUEST_URI} ^(.*)\\(.*)$ RewriteRule .*...