Page 52 of 291 FirstFirst ... 242505152535462102152 ... LastLast
Results 511 to 520 of 2907
  1. #511
    Join Date
    Nov 2008
    Posts
    69
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    I don't quite understand what you mean. When I turn on the .htaccess file all I get on the entire site (except admin) is a 500 error.

  2. #512
    Join Date
    Jan 2009
    Posts
    29
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Sorry, but my information about the .htaccess file had nothing to do with your error.
    It was a followup to a problem I'd posted earlier in the thread about products not being added to the shopping cart when they had an updated URL using this module.

  3. #513
    Join Date
    Aug 2008
    Posts
    50
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    I have many existing eZpages (prior to using Ceon mod) that need a URI generating for. There's nearly 500 so going into each one to have it automatically generated isn't an effective option.

    Is there a way to simulate this, perhaps with SQL?

    Great mod by the way!
    Any help will be appreciated

  4. #514
    Join Date
    Aug 2004
    Location
    Belfast, Northern Ireland
    Posts
    2,480
    Plugin Contributions
    14

    Default Re: Ceon URI Mapping (SEO)

    Hi Jesse,

    The rewrite rule you have posted is from an old version of the module. Please download and install the latest version.

    The rule you probably want is:

    RewriteEngine On

    # ONLY rewrite URIs beginning with /zencart/
    RewriteCond %{REQUEST_URI} ^/zencart/.* [NC]
    # Don't rewrite any URIs ending with a file extension (ending with .[xxxx])
    RewriteCond %{REQUEST_URI} !\.[a-zA-Z]{2,4}$
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/zencart/admin.* [NC]
    # Don't rewrite editors directory
    RewriteCond %{REQUEST_URI} !^/zencart/editors.* [NC]
    # Don't rewrite cPanel directories
    RewriteCond %{REQUEST_URI} !/cpanel.* [NC]
    RewriteCond %{REQUEST_URI} !/frontend.* [NC]
    # Handle all other URIs using Zen Cart (index.php)
    RewriteRule (.*) index.php?%{QUERY_STRING} [L]


    All the best...

    Conor
    ceon

  5. #515
    Join Date
    May 2009
    Posts
    36
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Dear Ceon,

    Thanks for your plugin! I am a green hand. My .htaccess conten is:

    Code:
    RewriteEngine On
    
    # Don't rewrite any URIs ending with a file extension (ending with .[xxxx])
    RewriteCond %{REQUEST_URI} !\.[a-zA-Z]{2,4}$ [OR] 
    RewriteCond %{REQUEST_URI} \.(html)$ [NC]
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/admin.* [NC]
    # Don't rewrite editors directory
    RewriteCond %{REQUEST_URI} !^/editors.* [NC]
    # Don't rewrite cPanel directories
    RewriteCond %{REQUEST_URI} !/cpanel.* [NC]
    RewriteCond %{REQUEST_URI} !/frontend.* [NC]
    # Handle all other URIs using Zen Cart (index.php)
    RewriteRule (.*) index.php?%{QUERY_STRING} [L]

    and my zen cart study site:
    http://shop.cheapglasses123.com

    I have some problems with the following urls:

    Code:
    more pages
    http://shop.cheapglasses123.com/plastic-or-acetate-glasses?&sort=20a&page=2
    http://shop.cheapglasses123.com/plastic-or-acetate-glasses/index2.html
    
    how to add .html
    http://shop.cheapglasses123.com/plastic-or-acetate-glasses/fa0084-plastic-glasses
    
    contact us
    http://shop.cheapglasses123.com/index.php?main_page=contact_us
    
    
    http://shop.cheapglasses123.com/plastic-or-acetate-glasses/fa0047-plastic-glasses/reviews?&page=2
    
    add this to my cart
    http://shop.cheapglasses123.com/index.php?main_page=shopping_cart&page=2&products_id=5
    
    
    product details
    http://shop.cheapglasses123.com/plastic-or-acetate-glasses/fa0047-plastic-glasses?page=2
    
    
    read the review
    http://shop.cheapglasses123.com/plastic-or-acetate-glasses/fa0047-plastic-glasses/review?&reviews_id=2
    
    write a review
    http://shop.cheapglasses123.com/plastic-or-acetate-glasses/fa0047-plastic-glasses/add-a-review?page=2
    
    
    More Information
    http://shop.cheapglasses123.com/index.php?main_page=page_2
    help please!
    Many thanks.

  6. #516
    Join Date
    Aug 2009
    Posts
    2
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Dear Conor,

    Thanks for your plugin

    i want to rewrite url
    www.domain.com/index.php?main_page=login
    to
    www.domain.com/login


    but i can't find where to this?

    can somebody help me???

  7. #517
    Join Date
    Aug 2004
    Location
    Belfast, Northern Ireland
    Posts
    2,480
    Plugin Contributions
    14

    Default Re: Ceon URI Mapping (SEO)

    Hi,

    Most of the URIs you posted are working fine. The extra things like &reviews_id are necessary otherwise Zen Cart doesn't know what review to show.

    As for adding .html.. why would you want to? Time Berners-Lee recommends you don't!

    If you do, then you must manually add .html to the end of each of your URIs, it isn't added when you auto-generate a URI.

    Glad you like the module!

    All the best...

    Conor
    ceon

  8. #518
    Join Date
    Aug 2004
    Location
    Belfast, Northern Ireland
    Posts
    2,480
    Plugin Contributions
    14

    Default Re: Ceon URI Mapping (SEO)

    Hi,

    Quote Originally Posted by ronny View Post
    but i can't find where to this?
    Please read the instructions!

    The first part of the configuration section entitled "Specifying the current URI Mapping for any other Zen Cart page" is what you want.. obviously "main_page" for you should be "index".

    Glad you like the software!

    All the best...

    Conor
    ceon

  9. #519
    Join Date
    May 2009
    Posts
    36
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Dear Conor,

    Would you please tell more details on how to do please?

    One more thing, after I install the MOD of EZ-Pages Meta Tag Fields, your MOD does now work for EZ-Pages.

    When I reinstall your MOD, then the MOD of EZ-Pages Meta Tag Fields does not work again.

  10. #520
    Join Date
    May 2009
    Posts
    36
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by yisou View Post
    Dear Conor,

    Would you please tell more details on how to do please?

    One more thing, after I install the MOD of EZ-Pages Meta Tag Fields, your MOD does now work for EZ-Pages.

    When I reinstall your MOD, then the MOD of EZ-Pages Meta Tag Fields does not work again.
    I just compared the two MOD files, and I found admin/ezpages.php makes the problem.

 

 

Similar Threads

  1. Simple SEO URL, Ultimate SEO URLs, Ceon URI Mapping SEO
    By pizza392 in forum All Other Contributions/Addons
    Replies: 13
    Last Post: 21 Jan 2015, 10:49 AM
  2. Ceon uri mapping vs Simple SEO
    By crixus in forum General Questions
    Replies: 0
    Last Post: 28 Feb 2014, 04:41 AM
  3. v151 Ceon URI Mapping (SEO) Issues?
    By yisou in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 30 Jul 2013, 12:06 PM
  4. v151 Ceon URI Mapping (SEO) installation problem.
    By jmac2020 in forum General Questions
    Replies: 1
    Last Post: 23 Oct 2012, 01:06 PM
  5. Ceon URI Mapping (SEO) How to install?
    By jackfitz in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 28 Apr 2010, 12:09 PM

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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR