Total newbie here.
Trying to run a maxbounty link, it won't direct link and it said facebook blacklisted the domain once. It's a red highlight that reads "This site is blocked"
I purchased a domain, redirected the offer and it still won't work. It has no problems direct linking clickbank though.
What's up with this? any workaround? The offer is legit white hat, nothing shady.
A simple redirection rule if you are not running USA, Singapore, Japan and couple other places that FB has servers will do fine.
Or iframe the offer on a brand new clean domain
<!DOCTYPE html>
<html>
<body>
<iframe src="http://yourflaggedoffer.com" width="1000" height="2000" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" vspace="0" hspace="0" display:none">
</iframe>
</body>
</html>
Trying the iframe thing. Thanks.
Why don't you use a landing page ?
It passed on Facebook. let me explain how I made it work.
The code above didn't fill up the screen enough to pass as the real thing, but I found a better one that did.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="icon"
type="image/png"
href="http://yourdomain.com/favicon.png">
<title>Insert title</title>
<style type="text/css">
body, html
{
margin: 0; padding: 0; height: 100%; overflow: hidden;
}
#content
{
position:absolute; left: 0; right: 0; bottom: 0; top: 0px;
}
</style>
</head>
<body>
<div id="content">
<iframe width="100%" height="100%" frameborder="0" src="http://youroffer.com" />
</div>
</body>
</html>
Notes:
- Replace the title so it's the same as on the original website
- Go to https://www.google.com/s2/favicons?d...inaldomain.com (replace this with the original site) to take their fav icon
- Upload the fav icon on your server, replace the link in the head. this makes it look better.
Voila. Looks like the same thing.