Question

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.

Was it helpful?

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]
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top