Page 214 of 291 FirstFirst ... 114164204212213214215216224264 ... LastLast
Results 2,131 to 2,140 of 2907
  1. #2131
    Join Date
    Oct 2010
    Posts
    46
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    I tried this as per your suggestions, obviously with my URL-
    Options +FollowSymlinks
    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
    RewriteRule (.*) http://www.example.com/$1 [R=301,L]

    # ONLY rewrite URIs beginning with /shop/
    RewriteCond %{REQUEST_URI} ^/shop/ [NC]
    # Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
    RewriteCond %{REQUEST_URI} !\.[a-z]{2,5}$ [NC]
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/shop/admin [NC]
    # Don't rewrite editors directory
    RewriteCond %{REQUEST_URI} !^/shop/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]

    I got a 500 error.

    The re-direct works using :
    RewriteEngine On

    # Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
    RewriteCond %{REQUEST_URI} !\.[a-z]{2,5}$ [NC]
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/zc_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)

    Options +FollowSymlinks
    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^jambaroo.co.uk$ [NC]
    RewriteRule (.*) http://www.jambaroo.co.uk/$1 [R=301,L]


    BUT the links die when i turn on the ceon mapping.
    Last edited by Jeniferous; 17 Nov 2010 at 11:16 AM. Reason: Add more details

  2. #2132
    Join Date
    Oct 2010
    Posts
    46
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Also - if i change to your code (amending the /shop bits to suit) then my redirected http://jambaroo.co.uk doesn't seem to link the style sheet....

    And i can't log on to admin... it loads the page but doesnt' seem to accept the username/password combination.

  3. #2133
    Join Date
    Nov 2010
    Posts
    2
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Hi All,

    I am using CEON URL Mapping in my zencart website. while using the XENU(link testing tool) all the .html link are reported has 404 'Page Not Found'. But the page works fine in the browsers. Its only in xenu its giving the "page not Found" error. I suspect that there is mistake in my Rewrite script. Can you please help me on this rewrite script.

    Here is my rewrite script added in the .htacess file
    ##### NOTE: Replace /shop/ with the relative web path of your catalog in the "Rewrite Base" line below:

    Options +FollowSymLinks
    RewriteEngine On
    RewriteBase /

    #RewriteCond %{HTTP_HOST} !^www\.us-immigration\.com [NC]
    #RewriteCond %{HTTP_HOST} !^$
    #RewriteRule ^(.*) http://www.us-immigration.com/$1 [L,R]

    RewriteCond %{HTTP_HOST} ^us-immigration\.com$ [NC]
    RewriteRule ^(.*)$ http://www.us-immigration.com/$1 [R=301]

    # SEO URLs
    RewriteRule ^(.*)-p-(.*).html$ index\.php?main_page=product_info&products_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-(.*).html$ index\.php?main_page=index&cPath=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-n-(.*).html$ index\.php?main_page=news_article&article_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-m-([0-9]+).html$ index\.php?main_page=index&manufacturers_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pi-([0-9]+).html$ index\.php?main_page=popup_image&pID=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pr-([0-9]+).html$ index\.php?main_page=product_reviews&products_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pri-([0-9]+).html$ index\.php?main_page=product_reviews_info&products_id=$2&%{QUERY_STRING} [L]
    #RewriteRule ^catalog/(.*)$ index\.php?main_page=product_info&products_id=118&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pji-(.*).html$ index\.php?main_page=document_product_info&products_id=$2&%{QUERY_STRING} [L]

    # For Open Operations Info Manager
    RewriteRule ^(.*)-i-([0-9]+).html$ /index\.php?main_page=info_manager&pages_id=$2&%{QUERY_STRING} [L]

    # For dreamscape's News & Articles Manager
    RewriteRule ^rss.xml$ /index\.php?main_page=news_rss&%{QUERY_STRING} [L]

    # All other pages
    # Don't rewrite real files or directories
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*).html$ /index.php?main_page=$1&%{QUERY_STRING} [L]


    Please help me..

    Thanks in advance

    -Immanuel Victor

  4. #2134
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by Jeniferous View Post
    I tried this as per your suggestions, obviously with my URL-
    Options +FollowSymlinks
    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
    RewriteRule (.*) http://www.example.com/$1 [R=301,L]

    # ONLY rewrite URIs beginning with /shop/
    RewriteCond %{REQUEST_URI} ^/shop/ [NC]
    # Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
    RewriteCond %{REQUEST_URI} !\.[a-z]{2,5}$ [NC]
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/shop/admin [NC]
    # Don't rewrite editors directory
    RewriteCond %{REQUEST_URI} !^/shop/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]

    I got a 500 error.

    The re-direct works using :
    RewriteEngine On

    # Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
    RewriteCond %{REQUEST_URI} !\.[a-z]{2,5}$ [NC]
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/zc_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)

    Options +FollowSymlinks
    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^jambaroo.co.uk$ [NC]
    RewriteRule (.*) http://www.jambaroo.co.uk/$1 [R=301,L]


    BUT the links die when i turn on the ceon mapping.
    Try this here in your .htaccess file. Do not put the www on this one RewriteCond %{HTTP_HOST} ^example.com$ [NC]

    RewriteEngine On

    RewriteCond %{HTTP_HOST} ^example.com$ [NC]
    RewriteCond %{REQUEST_URI} !^/ADMINFOLDERNAME [NC]
    RewriteCond %{REQUEST_URI} !^/editors [NC]
    RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]


    # Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
    RewriteCond %{REQUEST_URI} !\.[a-z]{2,5}$ [NC]
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/ADMINFOLDERNAME [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]
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  5. #2135
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by immanuelvictor View Post
    Hi All,

    I am using CEON URL Mapping in my zencart website. while using the XENU(link testing tool) all the .html link are reported has 404 'Page Not Found'. But the page works fine in the browsers. Its only in xenu its giving the "page not Found" error. I suspect that there is mistake in my Rewrite script. Can you please help me on this rewrite script.

    Here is my rewrite script added in the .htacess file
    ##### NOTE: Replace /shop/ with the relative web path of your catalog in the "Rewrite Base" line below:

    Options +FollowSymLinks
    RewriteEngine On
    RewriteBase /

    #RewriteCond %{HTTP_HOST} !^www\.us-immigration\.com [NC]
    #RewriteCond %{HTTP_HOST} !^$
    #RewriteRule ^(.*) http://www.us-immigration.com/$1 [L,R]

    RewriteCond %{HTTP_HOST} ^us-immigration\.com$ [NC]
    RewriteRule ^(.*)$ http://www.us-immigration.com/$1 [R=301]

    # SEO URLs
    RewriteRule ^(.*)-p-(.*).html$ index\.php?main_page=product_info&products_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-(.*).html$ index\.php?main_page=index&cPath=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-n-(.*).html$ index\.php?main_page=news_article&article_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-m-([0-9]+).html$ index\.php?main_page=index&manufacturers_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pi-([0-9]+).html$ index\.php?main_page=popup_image&pID=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pr-([0-9]+).html$ index\.php?main_page=product_reviews&products_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pri-([0-9]+).html$ index\.php?main_page=product_reviews_info&products_id=$2&%{QUERY_STRING} [L]
    #RewriteRule ^catalog/(.*)$ index\.php?main_page=product_info&products_id=118&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pji-(.*).html$ index\.php?main_page=document_product_info&products_id=$2&%{QUERY_STRING} [L]

    # For Open Operations Info Manager
    RewriteRule ^(.*)-i-([0-9]+).html$ /index\.php?main_page=info_manager&pages_id=$2&%{QUERY_STRING} [L]

    # For dreamscape's News & Articles Manager
    RewriteRule ^rss.xml$ /index\.php?main_page=news_rss&%{QUERY_STRING} [L]

    # All other pages
    # Don't rewrite real files or directories
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*).html$ /index.php?main_page=$1&%{QUERY_STRING} [L]


    Please help me..

    Thanks in advance

    -Immanuel Victor
    Hi number one you need to get rid of all this in your .htaccess file. You can not run another seo url module with this one.
    Number two you need to create your .htaccess file like the example one I mention above.

    # SEO URLs
    RewriteRule ^(.*)-p-(.*).html$ index\.php?main_page=product_info&products_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-(.*).html$ index\.php?main_page=index&cPath=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-n-(.*).html$ index\.php?main_page=news_article&article_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-m-([0-9]+).html$ index\.php?main_page=index&manufacturers_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pi-([0-9]+).html$ index\.php?main_page=popup_image&pID=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pr-([0-9]+).html$ index\.php?main_page=product_reviews&products_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pri-([0-9]+).html$ index\.php?main_page=product_reviews_info&products_id=$2&%{QUERY_STRING} [L]
    #RewriteRule ^catalog/(.*)$ index\.php?main_page=product_info&products_id=118&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pji-(.*).html$ index\.php?main_page=document_product_info&products_id=$2&%{QUERY_STRING} [L]
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  6. #2136
    Join Date
    Oct 2010
    Posts
    46
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    You are a complete superstar! Works a dream.... i've been struggling with this one for days so i really am grateful!

    Thanks!

  7. #2137
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by Jeniferous View Post
    You are a complete superstar! Works a dream.... i've been struggling with this one for days so i really am grateful!

    Thanks!
    No problem, glad you got it sorted out.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  8. #2138
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by rachitm View Post
    again I changed my htaccess files but no result i donot what problem is exactly
    Clear you .htaccess file and add this making sure you fill in the information to your site.

    RewriteEngine On

    RewriteCond %{HTTP_HOST} ^example.com$ [NC]
    RewriteCond %{REQUEST_URI} !^/ADMINFOLDERNAME [NC]
    RewriteCond %{REQUEST_URI} !^/editors [NC]
    RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]


    # Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
    RewriteCond %{REQUEST_URI} !\.[a-z]{2,5}$ [NC]
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/ADMINFOLDERNAME [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]
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  9. #2139
    Join Date
    Sep 2008
    Location
    Central Coast of California
    Posts
    22
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Country Charm - Thank you for all your help. It is really appreciated. I did what you said and reloaded all the files. Third time is a charm I guess. I am not stuck on the .htaccess file. I created a file with the following:

    RewriteEngine On

    RewriteCond %{HTTP_HOST} ^rondajane.com$ [NC]
    RewriteCond %{REQUEST_URI} !^/myadmin [NC]
    RewriteCond %{REQUEST_URI} !^/editors [NC]
    RewriteRule ^(.*)$ http://www.rondajane.com/$1 [R=301,L]



    # Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
    RewriteCond %{REQUEST_URI} !\.[a-z]{2,5}$ [NC]
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/myadmin [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]



    Like I said before though, I cannot see what is in my current .htaccess file since it doesn't show up in my list of files on my cpanel file manager list. I am a little leary to just delete it not knowing what is there and replace it with the above. It that what you are suggesting? Just thought I'd check before pushing the old "delete" button.

    Thanks.
    Ronda Robb

  10. #2140
    Join Date
    Sep 2008
    Location
    Central Coast of California
    Posts
    22
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Got it! I was able to edit the .htaccess file right in the ftp client. Didn't know I could do that. So cool. It is now working.

    This is a great module. Love it!
    Thank you everyone that helped.

    Now on to adding product.

    Ronda
    www.rondajane.com

 

 

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