View Single Post
  #4  
Old 03-30-2006, 10:29 PM
 
Lionel Lionel is offline
 

Senior Member
  
Join Date: Dec 2005
Posts: 199
 

Default

This has nothing to do with SEO

for broken links, if you do not want to display errors, put in the error documents in your htaccess. It's more elegant anyway

Code:
ErrorDocument 401 http://site.com/page.htm ErrorDocument 403 http://site.com/page.htm ErrorDocument 404 http://site.com/page.htm ErrorDocument 500 http://site.com/page.htm ErrorDocument 503 http://site.com/page.htm

and create the static pages, putting whatever you want in there. Me i put images of the categories. You can also put a sitemap.php instead of page.htm if you have that mod installed. Do a search on the net to see what those errors are and to create pages with proper wordings.

Now for that error 33 it's a little more involved although simple. Go into include/func.php and just change that line in func.php to what you want, replacing the error_message.php?access_denied&id=33 with

Quote:
home.php

Code:
# Error handling # if (!$product || !$categoryid) { if ($redirect_if_error) func_header_location("error_message.php?access_denied&id=33"); else return false; }
__________________
X-Cart Gold 4.0.17 [unix]
X-Cart Gold 4.0.18 [unix]
Reply With Quote