osCmax v2.5 User Manual
Results 1 to 2 of 2

seo

This is a discussion on seo within the osCommerce 2.2 Discussion forums, part of the osCommerce 2.2 Forums category; dears i have a new oscmax website also i read more over important of seo so in admin cp there ...

      
  1. #1
    Lurker
    Join Date
    Sep 2009
    Posts
    1
    Rep Power
    0


    Default seo

    dears
    i have a new oscmax website also i read more over important of seo
    so in admin cp there is a SEO URLs
    the basic configer on it for
    Enable SEO URLs? - Add cPath to product URLs? - Add cPath to product URLs? is false if i change it did i will found a danger in my website
    if not did it help me to increase the rink of my website in search engines
    also how i can add Meta Keywords and Meta Description
    best regards

  2. #2
    osCMax Development Team
    pgmarshall's Avatar
    Join Date
    Feb 2009
    Location
    London
    Posts
    2,678
    Rep Power
    49


    Smile Re: seo

    Okay - lets see if I can answer this one ...

    Mustafa,

    Enable SEO URLs?_____________True
    Add cPath to product URLs?____True

    You will need to edit your .htaccess file so the end looks like this ... note the removed #'s from the rewrite rules.

    Code:
    ## SEO Url's .htaccess file
    ## If you want to use the Apache Mod-Rewrite method for SEO URL's
    ## NOTE: This requires that you are on an apache web server with mod_rewrite enabled.
    
    <IfModule mod_rewrite.c>
    Options +FollowSymLinks
    RewriteEngine On
    
    # Change "catalog" to your catalog directory name:
    #RewriteBase /catalog/
    ## If installed to the base home/root directory, uncomment the below code only:
    RewriteBase /
    
    RewriteRule ^(.*)-p-(.*).html$ product_info.php?products_id=$2&%{QUERY_STRING}
    RewriteRule ^(.*)-c-(.*).html$ index.php?cPath=$2&%{QUERY_STRING}
    RewriteRule ^(.*)-m-([0-9]+).html$ index.php?manufacturers_id=$2&%{QUERY_STRING}
    RewriteRule ^(.*)-pi-([0-9]+).html$ popup_image.php?pID=$2&%{QUERY_STRING}
    RewriteRule ^(.*)-t-([0-9]+).html$ articles.php?tPath=$2&%{QUERY_STRING}
    RewriteRule ^(.*)-a-([0-9]+).html$ article_info.php?articles_id=$2&%{QUERY_STRING}
    RewriteRule ^(.*)-pr-([0-9]+).html$ product_reviews.php?products_id=$2&%{QUERY_STRING}
    RewriteRule ^(.*)-pri-([0-9]+).html$ product_reviews_info.php?products_id=$2&%{QUERY_STRING}
    RewriteRule ^(.*)-i-([0-9]+).html$ information.php?info_id=$2&%{QUERY_STRING}
    </ifModule>
    # EOF: MOD - Ultimate SEO URLs
    This will improve your search engine ranking as the url will contain your products.

    Meta Tags and Description are added to all pages automatically - just view source on one of your pages and you will see them.

    Good luck,

    Regards,
    pgmarshall
    _______________________________

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •