Issue In Removing Double Or More Slashes From URL By .htaccess

后端 未结 4 1839
遥遥无期
遥遥无期 2020-12-09 11:27

I am using the following htaccess rul to remove double or more slashes from web urls:

#remove double/more slashes in url
RewriteCond %{REQUEST_URI} ^(.*)//(.         


        
4条回答
  •  一个人的身影
    2020-12-09 12:33

    As per this link, following code should take care of extra slashes(anywhere) in URL.

    RewriteCond %{THE_REQUEST} //
    RewriteRule ^.*$ $0 [R=302,L,NE]
    

提交回复
热议问题