A quick note about scraping
This one’s for the geeks. “[tag]Feed scraping[/tag]” is when some [tag]spam[/tag] site steals your [tag]blog[/tag] content, posts it on their blog, and throws in a bunch of links to penis-enlarging pills and such. There’s a couple of things you can do to help make this less of a problem.
One way to help get people AWAY from those sites is to make sure you use [tag]TARGET attribute[/tag]s in all your links. Meaning:
<A HREF="http://matthewebel.com">
becomes:
<A HREF="http://matthewebel.com" TARGET="_top">
The _top target means the link will load in the browser window you’re looking at, breaking out of frames and getting away from whatever site you were on. _blank will open a link in a new window, handy if you want to link to someone else’s site without sending people away from your own.
Another trick is to use your web host’s [tag]redirects[/tag]. Any web host uses a file called [tag].htaccess[/tag] at the root (homepage) level to handle redirects. All it needs to be is a list that looks something like this:
Redirect /blog http://matthewebel.com/
Redirect /preorder http://matthewebel.com/store/preorder
Update: Check the comment below from Michael for even better redirect technique!
If you can make as many links as possible redirect through your web host, you’ll be able to track clickthroughs even if they’re on someone else’s site. You can also keep on top of changing URL’s, such as my [tag]iTunes Music Store[/tag]. The actual URL, as of this post, is this:
But I can keep it smaller and always up-to-date by simply redirecting http://matthewebel.com/itunes to the current store page, using my affiliate link. Even if this link stays online for years, it’ll always point to the right place if I keep my .htaccess file up to date.
Just a few thoughts for some good web-housekeeping. If you’ve got any other suggestions, let me know!
Update: Oh, and in case you’re wondering, all my “Read More” links point to _top as well, I had to hack [tag]WordPress[/tag] to do that.
[tags]Matthew Ebel, Piano Rock[/tags]
P.S.: If you liked what you read, please share it with others!



