[im dumb] I want to redirect an entire WP site to an external WP landing page. PLUGIN/HOW?

Bostoncab

Elite Member
Joined
Dec 31, 2009
Messages
2,256
Reaction score
514
So I have a WP site that has like 4,000 pages cached in google. I want google to keep thinking those pages are there but when a visitor goes to any page or post cached in google the visitor gets redirected to an external domain.

Is it better to do this with a plugin or alter the .htt access? This will keep my pages cached in google right?

Thanks,

Mike
 
You need a cloaking script.

If you use htaccess, google will eventually deindex the pages. A javascript redirect also could work without getting the pages deindexed.

I would also suggest you to do a search for the plugin, that opens a full screen popup as soon as the page is loaded. That way, you are not in danger of getting your site deindexed.
 
Do a 301 redirect -> you'll keep your existing PR and rankings intact and pass them over to the external site.
 
Don't ever say I don't feed you ;)

Use this WP plugin -
Code:
http://wordpress.org/extend/plugins/quick-pagepost-redirect-plugin/
This will do exactly that..

There is also a plugin made by a member here I think it's called Core Conversion. What this does is redirects your visitors to any CPA offers or external page while letting you keep that post indexed in the big searches.
 
Last edited:
Don't ever say I don't feed you ;)

Use this WP plugin -
Code:
http://wordpress.org/extend/plugins/quick-pagepost-redirect-plugin/
This will do exactly that..

There is also a plugin made by a member here I think it's called Core Conversion. What this does is redirects your visitors to any CPA offers or external page while letting you keep that post indexed in the big searches.

So this looks good but..4,000 pages. I would actually need a list of the 4,000 pages right?

I am looking for something that just knows to redirect all the pages/posts to an external landing page.
 
Try the javascript redirect.

Open your themes, header.php and add the following code.
Code:
<script type="text/javascript">
<!--
window.location = "http://www.example.com/";
//-->
</script>
 
So this looks good but..4,000 pages. I would actually need a list of the 4,000 pages right?

I am looking for something that just knows to redirect all the pages/posts to an external landing page.

Yes I see what you mean but this could be easily outsourced. When you have a site that big you should always have helpers.

http://onlinejobs.ph <--- Go here and hire a Filipino to do this simple task for dirt cheap.
 
Try the javascript redirect.

Open your themes, header.php and add the following code.
Code:
<script type="text/javascript">
<!--
window.location = "http://www.example.com/";
//-->
</script>

That didn't work..thanks though.

Yes I see what you mean but this could be easily outsourced. When you have a site that big you should always have helpers.

http://onlinejobs.ph <--- Go here and hire a Filipino to do this simple task for dirt cheap.

You really aren't supposed t use other people's threads to sell.
 
You really aren't supposed t use other people's threads to sell.

Just telling you how to get the job done, I don't own that company but, I do use it though. When I think a service is good I will recommend it someone in your position. I would expect you to be grateful for that but, o'well.
 
Last edited:
Just telling you how to get the job done, I don't own that company but, I do use it though. When I think a service is good I will recommend it someone in your position. I would expect you to be grateful for that but, o'well.

Hi, you big dummy :D

You've been reported! Shouldn't spam a spammers forum idiot.
 
Back
Top