Revenue Source

Welcome to the Revenue Source affiliate marketing forums.

You are viewing our internet marketing and SEO forums as a guest which gives you limited access to most of our discussions.  By joining our free community, you will have access to post affiliate marketing topics, communicate privately with other members (PM), exchange SEO strategies, and access many other special features.  Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems, please don't hesitate to contact us.

Go Back   Revenue Source > Affiliate Marketing Hangout > Internet Marketing Articles > SEO / SEM
Reload this Page Handling Erroneous Dynamic URLS
Tags: , , ,

Reply
 
LinkBack Thread Tools Search this Thread
Old
  (#1 (permalink))
SEO Blogs is Offline
Revenue Source Veteran
SEO Blogs is worth a listen.SEO Blogs is worth a listen.SEO Blogs is worth a listen.
 
SEO Blogs's Avatar
 
Join Date: Jul 2005
Posts: 817
   
Handling Erroneous Dynamic URLS - 11-15-2006

When creating dynamic pages, make sure you handle weird urls so that malicious linking doesn’t lead to the indexing of non-existent urls. Use HTTP header checker to see server responses. Catch all invalid requests with a custom 404 page. What URLS to check? Try to let .htaccess handle as much of the 404s as possible instead. PHP should be reserved for checking query values. You don’t want a chain of 301s where invalid URLs are returning 301s. If the bad urls already exist, I would replace the 404s with 301s below.
  • /index.html => 404
  • /index.htm => 404
  • /?junksdso => 404
  • // => 404
  • /index =>404
  • /%20 =>404 (One time a guy linked me with this and the url got indexed)
  • /scriptfile.html => 404 Direct access to the file that generates dynamic content should generate a 404. Better yet, rename the file to something difficult to crack. Don’t forget to delete unencrypted versions of files on your server.
  • 404 any invalid query values. For example, if a page produce unique pages for values 1-5, a value of 6 should 404.
  • If you’re not using unencrypted files:
    • /validurl.html?junk=query =>404
    • /validurl.html?junk= should also 404.
  • /path 301=> /path/ Missing / for urls that end in / must 301 to url/. Yahoo will drop the /, so I can’t have that URL 404.
  • If a page is not dynamic, make sure page.html?bogusquery=string => 404
  • Capitalization should not matter. Use [NC] in Cond statements to avoid this.
  • urls with +, _ or - should be handled correctly.
Question: If I link to a url like this: index.html? (with nothing following the question mark) will Google index it?


Handling Erroneous Dynamic URLS - Read More...
  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads for: Handling Erroneous Dynamic URLS
Thread Thread Starter Forum Replies Last Post
Just My Size Changed URLS RS Marifer LinkShare 1 12-23-2006 12:31 AM
Update Dynamic Pages like Walking on Glass SEO Blogs SEO / SEM 0 11-15-2006 10:41 PM
Dynamic / Fixed Tables SEO Blogs SEO / SEM 0 11-15-2006 10:41 PM
Google Doesn?t Parse Keywords in URLS SEO Blogs SEO / SEM 0 11-15-2006 10:41 PM



© 2004-6 RevenueSource.com.  All rights reserved.  Do not duplicate or redistribute in any form.
This website and its logos/design are property of RevenueSource.com.  All rights reserved. vBSEO 3.2.0 RC7


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34