guys how to replace all external link to your website with your domain name?

Status
Not open for further replies.

keito0015

Active Member
999
2012
270
5
guys how to replace ALL external link to your website automaticallly and replace it with your domainname.

ex.
Code:
http://rapidgator.net/samplefile.html

it will look like this:

Code:
[COLOR=#3E3E3E][FONT=Verdana]http://[/FONT][/COLOR][COLOR=#3E3E3E][FONT=Verdana]mydomain.com/lsjdfkljsdf[/FONT][/COLOR]

hope someone can help me thank you.

see the external links of his website it turns to domain name: (warning: adult content)
http://blog.jav4you.com/2015/02/wan...in-guys-until-she-gets-10-shots-of-cream-pie/
 
Last edited:
2 comments
guys how to replace ALL external link to your website automaticallly and replace it with your domainname.

ex.
Code:
http://rapidgator.net/samplefile.html

it will look like this:

Code:
[COLOR=#3E3E3E][FONT=Verdana]http://[/FONT][/COLOR][COLOR=#3E3E3E][FONT=Verdana]mydomain.com/lsjdfkljsdf[/FONT][/COLOR]

hope someone can help me thank you.


Try to do this SQL-query through PHPmyadmin for example:

UPDATE wp_posts SET post_content = replace(post_content, 'http://old-domain.com', 'http://new-domain.com');
UPDATE wp_posts SET guid = replace(guid, 'old-domain.com','http://new-domain.com');
UPDATE wp_options SET option_value = replace(option_value, 'old-domain.com', 'http://new-domain.com') WHERE option_name = 'home' OR option_name = 'siteurl';
 
Status
Not open for further replies.
Back
Top