How to remove from url with .htaccess

前端 未结 2 1928
闹比i
闹比i 2021-01-22 18:28

how to remove %20,:,/,? and many more from url with .htaccess? im already try code from this post, but still not replace/redirect to new url .htaccess url rewrite and removing %

2条回答
  •  后悔当初
    2021-01-22 19:15

    Use this code , hope it will help you.

    # remove spaces from start or after /
    RewriteRule ^(.*/|)[\s%20]+(.+)$ $1$2 [L]
    
    # remove spaces from end or before /
    RewriteRule ^(.+?)[\s%20]+(/.*|)$ $1$2 [L]
    
    # replace spaces by - in between
    RewriteRule ^([^\s%20]*)(?:\s|%20)+(.*)$ $1-$2 [L,R]
    

    NOte- Must add that you need to fix the source of these URLs also because it is really not normal to be getting URLs like this.

提交回复
热议问题