Search and replace in apache htaccess a RewriteRule

后端 未结 4 1337
我寻月下人不归
我寻月下人不归 2020-12-04 02:07

I\'d basically like to get

/path/file+name+with+plusses.mp3

to rewrite to

/path/file name with plusses.mp3

In m

4条回答
  •  生来不讨喜
    2020-12-04 02:16

    I have a better one - with PHP :

    .htaccess:

      RewriteCond %{REQUEST_URI} ^/word/[^/]+$
      RewriteRule ^word/(.*)$  http://example.com/special_redirect.php?q=$1 [L,QSA,R=301]
    

    ./special_redirect.php

    
    

    This above copes with German umlaut chars but it is adaptable for the simpler cases of "_" to "-" and so on...

提交回复
热议问题