bit.ly has it such that if you do
bit.ly/blah+ it redirects to bit.ly/info/blah
How would the htaccess code look for replicating that (using a plus sign to redirect to a related page)
bit.ly has it such that if you do
bit.ly/blah+ it redirects to bit.ly/info/blah
How would the htaccess code look for replicating that (using a plus sign to redirect to a related page)
You can use this mod_rewrite code to do that:
RewriteEngine on
RewriteRule ^([^/]+)\+$ /info/$1 [L,R]