문제

PHP로 수행하는 방법, URL에서 여러 슬래시를 하나만 교체하는 방법을 알고 있습니다.

http://example.com/uri1////////uri2/uri4

대체 :

http://example.com/uri1/uri2/uri4

등. htaccess로 어떻게합니까?

도움이 되었습니까?

해결책

이 코드를 귀하의 안에 두십시오 DOCUMENT_ROOT/.htaccess 파일:

RewriteEngine On

RewriteCond %{THE_REQUEST} \s[^?]*//
RewriteRule ^.*$ /$0 [R=301,L,NE]
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top