0

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.

anubhava
  • 761,203
  • 64
  • 569
  • 643
webfan
  • 25
  • 3

1 Answers1

1

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

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

RewriteRule ^([^\+]+)\+$ info/$1 [L]
anubhava
  • 761,203
  • 64
  • 569
  • 643