Monday, June 30, 2014

Remove multiple slashes in web address in server




In .htaccess, add
 # remove multiple slashes anywhere in url

RewriteCond %{REQUEST_URI} ^(.*)//(.*)$
RewriteRule . %1/%2 [R=301,L] 


http://localhost/test//ajax/ will be redirected to http://localhost/test/ajax/

No comments:

Post a Comment