How to redirect or White space automatically to + or - with htaccess?

前端 未结 2 1329
一向
一向 2020-12-10 00:04

I need to redirect automatically lots of url like /file%20name/ ore /file name/ to /file+name/ or /file-name/.

How can I do this with .htacess ?

2条回答
  •  悲&欢浪女
    2020-12-10 00:53

    You can use something like this:

    RewriteRule file\ name\ http://example.com/file+name [R=301,NC,NE,L]
    

    Edit after comment:

    Try this:

    RewriteRule ^([^\ ]*)\ (.*)$ $1-$2 [E=rspace:yes,N]
    

提交回复
热议问题