How to redirect all incoming searches?

pennystocks

Junior Member
Joined
Jun 16, 2010
Messages
139
Reaction score
16
anyone know how to redirect all incoming traffic to my home page?

for example if someone searches and clicks a result which is direct to such and such article on my website i wa
nt them to be directed to the homepage instaed


is there a wp plugin for this?
Posted via Mobile Device
 
Add this into your htaccess file:

Code:
RewriteEngine On
RewriteBase /
RewriteRule ^(.+)$ / [R=302,L]

or try this one instead:

Code:
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/$
RewriteRule ^(.*)$ %{HTTP_HOST}
 
anyone know how to redirect all incoming traffic to my home page?

for example if someone searches and clicks a result which is direct to such and such article on my website i wa
nt them to be directed to the homepage instaed

is there a wp plugin for this?
Posted via Mobile Device
Why would you want to do that?

How would you feel if you click a link to what you are searching for and are
taken to the homepage instead only to have to figure out where it is all over again?


Doesn't look like it could be a good thing IMHO.

Enjoy ..... :cool2:
 
Last edited:
Back
Top