.htaccesshttp-redirecturl-rewritingbit.lygoo.gl

Rewrite htaccess, redirect if a "+" exisit in the url like goo.gl


my question is: how to redirect url when it contains a "+" like goo.gl and bit.ly a simple example http://goo.gl/gogl+ it will be redirect to http://goo.gl/info/gogl

thank in advance.


Solution

  • All you need is this code in your .htaccess file:

    Options +FollowSymLinks -MultiViews
    # Turn mod_rewrite on
    RewriteEngine On
    RewriteBase /
    
    RewriteRule ^([^\+]+)\+$ info/$1 [L]