Results 1 to 10 of 2907

Hybrid View

  1. #1
    Join Date
    Oct 2009
    Posts
    20
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    I changed the // to /, and still get the 404 Not Found.

    Here is what it generated in my test server:
    http://www.suncoastjewelers.railspla...ld/product-041

    Kat

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

    Default Re: Ceon URI Mapping (SEO)

    Hi Kat,

    Quote Originally Posted by SCkatlyns View Post
    I changed the // to /, and still get the 404 Not Found.
    Either your .htaccess file isn't actually being loaded or there is a problem with your rewrite rule.

    Check with your host if htaccess files are supported on your site!

    All the best..

    Conor
    ceon

  3. #3
    Join Date
    Oct 2009
    Posts
    20
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Hi Conor,

    Yes, they are supported.

    Here is what I have. I commented it all out trying to debug it.

    # $Id: .htaccess 1105 2005-04-04 22:05:35Z birdbrain $
    #
    # This is used with Apache WebServers
    # The following blocks direct HTTP requests in this directory recursively
    #
    # For this to work, you must include the parameter 'Limit' to the AllowOverride configuration
    #
    # Example:
    #
    #<Directory "/usr/local/apache/htdocs">
    # AllowOverride Limit
    #
    # 'All' with also work. (This configuration is in your apache/conf/httpd.conf file)
    #
    # This does not affect PHP include/require functions
    #
    # Example: http://server/catalog/includes/application_top.php will not work

    # <Files *.php>
    # Order Deny,Allow
    # Deny from all
    # </Files>
    # RewriteEngine On
    # Don't rewrite mynewsite's directory
    # RewriteCond %{REQUEST_URI} !/suncoastjewelers.railsplayground.* [NC]
    # Don't rewrite admin directory
    # RewriteCond %{REQUEST_URI} !^/Jf7dSh8J3v.* [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]
    # Don't rewrite any URIs ending with a file extension (ending with .[xxxx])
    # RewriteCond %{REQUEST_URI} !\.[a-zA-Z]{2,4}$
    # RewriteCond %{REQUEST_URI} \.(html|htm|php)$ [NC]

    Can you see what the problem is?

    Thanks so much!
    Kat

  4. #4
    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 SCkatlyns View Post
    # Handle all other URIs using Zen Cart (index.php)
    # RewriteRule (.*) /index.php?%{QUERY_STRING} [L]
    # Don't rewrite any URIs ending with a file extension (ending with .[xxxx])
    # RewriteCond %{REQUEST_URI} !\.[a-zA-Z]{2,4}$
    # RewriteCond %{REQUEST_URI} \.(html|htm|php)$ [NC]
    You shouldn't have RewriteCond[ition]s after the RewriteRule.

    Apart from that I don't know what the problem would be.

    All the best...

    Conor
    ceon

  5. #5
    Join Date
    Oct 2009
    Posts
    20
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Hi Conor,

    OK, how does this look? I've uncommented what I think should be used. I'm not sure about any of the other things there.

    # $Id: .htaccess 1105 2005-04-04 22:05:35Z birdbrain $
    #
    # This is used with Apache WebServers
    #
    # For this to work, you must include the parameter 'Options' to
    # the AllowOverride configuration
    #
    # Example:
    #
    # <Directory "/usr/local/apache/htdocs">
    # AllowOverride Options
    # </Directory>
    #
    # 'All' with also work. (This configuration is in the
    # apache/conf/httpd.conf file)

    # The following makes adjustments to the SSL protocol for Internet
    # Explorer browsers

    <IfModule mod_setenvif.c>
    <IfDefine SSL>
    SetEnvIf User-Agent ".*MSIE.*" \
    nokeepalive ssl-unclean-shutdown \
    downgrade-1.0 force-response-1.0
    </IfDefine>
    </IfModule>

    # Fix certain PHP values

    #<IfModule mod_php4.c>
    # php_value session.use_trans_sid 0
    # php_value register_globals 1
    #</IfModule>

    # to turn off register_globals
    # php_value register_globals 0

    RewriteEngine On

    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/Jf7dSh8J3v.* [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)
    # 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|htm|php)$ [NC]
    RewriteRule (.*) /index.php?%{QUERY_STRING} [L]

    Thanks,
    Kat

  6. #6
    Join Date
    Oct 2009
    Posts
    20
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Hi Conor,

    I tried it and got it to work!!

    Just one issue. When I apply it to the EZ pages, it doesn't change in the site.
    Example:
    http://www.suncoastjewelers.railspla...age=contact_us is still coming up.

    Any tips?

    Thanks so much,
    Kat

  7. #7
    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 SCkatlyns View Post
    I tried it and got it to work!!
    I'm glad to hear that!

    Quote Originally Posted by SCkatlyns View Post
    Just one issue. When I apply it to the EZ pages, it doesn't change in the site.
    That's not an EZ-Page you sent me a link to but a "define" page.. you can add a mapping for it by manually editing the database using software like PHPMyAdmin.. the instructions for this are int the documentation under "Other Zen Cart Pages".

    All the best...

    Conor
    ceon

 

 

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

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