Page 316 of 506 FirstFirst ... 216266306314315316317318326366416 ... LastLast
Results 3,151 to 3,160 of 5054
  1. #3151
    Join Date
    Aug 2008
    Posts
    50
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Hi all,

    I had an overlooked problem with my URL rewrites, products are shown as www.domain.com/productname50ml.html instead of www.domain.com/productname-50ml.html

    The problem initially was that product names were not seperated with a '-'. This has now been fixed but my problem is I want to redirect the original urls with a 301 redirect so that it goes to the new url seperated with a '-'.

    ####################Original .htaccess that did not seperate urls with a '-' __
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    RewriteCond %{QUERY_STRING} union [NC]
    RewriteRule .* /————http———– [F,NC]
    RewriteRule http: /———http———– [F,NC]

    RewriteCond %{QUERY_STRING} select [NC]
    RewriteRule .* /————http———– [F,NC]
    RewriteRule http: /———http———– [F,NC]

    RewriteCond %{QUERY_STRING} jatest [NC]
    RewriteRule .* /————http———– [F,NC]
    RewriteRule http: /———http———– [F,NC]

    RewriteCond %{QUERY_STRING} http [NC]
    RewriteRule .* /————http———– [F,NC]
    RewriteRule http: /———http———– [F,NC]
    </IfModule>
    ## Add these to your .htaccess file so that only one way to your site exists, either http://yoursite.com and http://www.yoursite.com ... the following adds the www if it's missingtml
    ErrorDocument 404 /errordocs/404error.php
    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^domain.com$ [NC]
    RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]

    ## If you'd like your site to go to http://mysite.com instead of http://www.mysite.com, add these changes instead (remove the two pound symbols before each line in the section below, and delete the section above):

    ##RewriteEngine On
    ##RewriteCond %{HTTP_HOST} ^www.yoursite.com$ [NC]
    ##RewriteRule ^(.*)$ http://yoursite.com/$1 [R=301,L]

    ## the following makes sure the correct mime type is sent for the .htc file
    AddType text/x-component .htc

    ##### NOTE: Replace /shop/ with the relative web path of your catalog in the "Rewrite Base" line below:

    Options +FollowSymLinks
    RewriteEngine On
    RewriteBase /

    # From Ultimate 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 ^(.*)-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]

    # 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 ^news/?$ index\.php?main_page=news&%{QUERY_STRING} [L]
    RewriteRule ^news/rss.xml$ index\.php?main_page=news_rss&%{QUERY_STRING} [L]
    RewriteRule ^news/archive/?$ index\.php?main_page=news_archive&%{QUERY_STRING} [L]
    RewriteRule ^news/([0-9]{4})-([0-9]{2})-([0-9]{2}).html$ index\.php?main_page=news&date=$1-$2-$3&%{QUERY_STRING} [L]
    RewriteRule ^news/archive/([0-9]{4})-([0-9]{2}).html$ index\.php?main_page=news_archive&date=$1-$2&%{QUERY_STRING} [L]
    RewriteRule ^news/(.*)-a-([0-9]+)-comments.html$ index\.php?main_page=news_comments&article_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^news/(.*)-a-([0-9]+).html$ index\.php?main_page=news_article&article_id=$2&%{QUERY_STRING} [L]

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

    ##########____Url rewrite that does have the '-'##############################__
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    RewriteCond %{QUERY_STRING} union [NC]
    RewriteRule .* /————http———– [F,NC]
    RewriteRule http: /———http———– [F,NC]

    RewriteCond %{QUERY_STRING} select [NC]
    RewriteRule .* /————http———– [F,NC]
    RewriteRule http: /———http———– [F,NC]

    RewriteCond %{QUERY_STRING} jatest [NC]
    RewriteRule .* /————http———– [F,NC]
    RewriteRule http: /———http———– [F,NC]

    RewriteCond %{QUERY_STRING} http [NC]
    RewriteRule .* /————http———– [F,NC]
    RewriteRule http: /———http———– [F,NC]
    </IfModule>
    ## Add these to your .htaccess file so that only one way to your site exists, either http://yoursite.com and http://www.yoursite.com ... the following ##adds the www if it's missingtml
    ##RewriteEngine On
    ##RewriteCond %{HTTP_HOST} ^domain.com$ [NC]
    ##RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]

    ## If you'd like your site to go to http://mysite.com instead of http://www.mysite.com, add these changes instead (remove the two pound symbols before each line in the section below, and delete the section above):

    ##RewriteEngine On
    ##RewriteCond %{HTTP_HOST} ^www.yoursite.com$ [NC]
    ##RewriteRule ^(.*)$ http://yoursite.com/$1 [R=301,L]

    ## the following makes sure the correct mime type is sent for the .htc file
    AddType text/x-component .htc

    ##### NOTE: Replace /shop/ with the relative web path of your catalog in the "Rewrite Base" line below:

    Options +FollowSymLinks
    RewriteEngine On
    RewriteBase /

    # From Ultimate 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 ^(.*)-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]

    # 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 ^news/?$ index\.php?main_page=news&%{QUERY_STRING} [L]
    RewriteRule ^news/rss.xml$ index\.php?main_page=news_rss&%{QUERY_STRING} [L]
    RewriteRule ^news/archive/?$ index\.php?main_page=news_archive&%{QUERY_STRING} [L]
    RewriteRule ^news/([0-9]{4})-([0-9]{2})-([0-9]{2}).html$ index\.php?main_page=news&date=$1-$2-$3&%{QUERY_STRING} [L]
    RewriteRule ^news/archive/([0-9]{4})-([0-9]{2}).html$ index\.php?main_page=news_archive&date=$1-$2&%{QUERY_STRING} [L]
    RewriteRule ^news/(.*)-a-([0-9]+)-comments.html$ index\.php?main_page=news_comments&article_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^news/(.*)-a-([0-9]+).html$ index\.php?main_page=news_article&article_id=$2&%{QUERY_STRING} [L]

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

    ##########################################################################################____

    So if any one understands my problem, how do I rewrite the old urls to redirect to the new URL's


    Thanks in advance!

  2. #3152
    Join Date
    Jul 2007
    Location
    Roseville, Michigan
    Posts
    188
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    I like this module, but it does not work well with larger sites. It slowed down my site and I had problems with it timing out every time I tried resting the cache.

  3. #3153
    Join Date
    Jan 2009
    Posts
    14
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by qfreddie View Post
    Hi

    I have installed the mod by following instructions and so. All went well, but all my product and category links lead back to home. For example:
    rolls-royce-carmague-c-cPath=74_85
    leads to
    -c-cPath/74_85/
    and home page loads.

    I run the ssu_check.php and i inserted the suggested code into my htaccess. In admin all seems to work fine.
    I have Zen 1.3.8 and SSU 3.6.7

    What is the problem? Am i missing somenthing?

    Thanks!
    Anybody any answer to this problem? It is Very urgent! TY

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by qfreddie View Post
    Anybody any answer to this problem? It is Very urgent! TY
    Try this go to your store admin/configurations/Simple SEO URL and Set Link Alias Status to true and Set Auto Alias Status to true. Go to extras/simple_seo_url_manager and Reset all cache: Maybe this will fix your problem.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  5. #3155
    Join Date
    Jun 2009
    Location
    Nantwich, Cheshire, UK
    Posts
    5
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    hi yellow1912
    First, let me thank you for your great module and your continued support (along with everyone else).

    I just wanted to bring to your attention a problem I encountered while installing SSU on my development system.
    My system has the following installed

    Apache 2.2
    PHP 5.2.8
    MySQL 5.0.51a
    running on Windows vista Home Premium

    The error occurs when I go into admin-extras-simple seo url manager and it pertains to the syntax of the mySQL statement

    INSERT INTO configuration_group VALUES ('', 'Simple SEO URL', 'Set SSU Options', '1', '1');
    I can't tell you the exact error at the moment as unfortunately I fixed it before copying it :-(
    Anyhow MySQL 5.0.51 does not like '' so instead I edited 0.sql and changed '' to NULL as shown below

    INSERT INTO configuration_group VALUES (NULL, 'Simple SEO URL', 'Set SSU Options', '1', '1');

    and everything worked ok

    Sorry if this has already been posted, i didn't feel like going through the 500+ pages of this topic !

  6. #3156
    Join Date
    Jan 2009
    Posts
    14
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by countrycharm View Post
    Try this go to your store admin/configurations/Simple SEO URL and Set Link Alias Status to true and Set Auto Alias Status to true. Go to extras/simple_seo_url_manager and Reset all cache: Maybe this will fix your problem.
    Great m8. It works now.
    Thanks!

  7. #3157
    Join Date
    Apr 2009
    Location
    Oxford UK
    Posts
    192
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Hello all its me again lol.

    Just need to check something before i send my sitemaps off to google etc.

    In my sitemaps the products are coming up as this

    http://fishingtackleoxford.co.uk/ind...ex&cPath=13_43 2009-06-04 weekly 1.00
    http://fishingtackleoxford.co.uk/ind...ex&cPath=16_42 2009-06-04 weekly 0.97
    http://fishingtackleoxford.co.uk/ind...ex&cPath=14_20 2009-06-03 weekly 0.95
    http://fishingtackleoxford.co.uk/ind...index&cPath=38 2009-06-03 weekly 0.92
    http://fishingtackleoxford.co.uk/ind...dex&cPath=5_21 2009-06-03 weekly 0.89
    http://fishingtackleoxford.co.uk/ind...index&cPath=14 2009-06-03 weekly 0.86
    http://fishingtackleoxford.co.uk/ind...=index&cPath=5 2009-06-03 weekly 0.84
    http://fishingtackleoxford.co.uk/ind...=index&cPath=7 2009-06-03 weekly 0.81
    http://fishingtackleoxford.co.uk/ind...index&cPath=13


    Should they not be like this ????

    http://fishingtackleoxford.co.uk/car...zer-shelf-life


    Or do they just re-direct on google's part . Sorry to be thick

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by qfreddie View Post
    Great m8. It works now.
    Thanks!
    I'm glade it worked out for you.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  9. #3159
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Your sitemap should also contain new links. Did you re-create the sitemap after you enable seo?

    Quote Originally Posted by gmrm View Post
    Hello all its me again lol.

    Just need to check something before i send my sitemaps off to google etc.

    In my sitemaps the products are coming up as this

    http://fishingtackleoxford.co.uk/ind...ex&cPath=13_43 2009-06-04 weekly 1.00
    http://fishingtackleoxford.co.uk/ind...ex&cPath=16_42 2009-06-04 weekly 0.97
    http://fishingtackleoxford.co.uk/ind...ex&cPath=14_20 2009-06-03 weekly 0.95
    http://fishingtackleoxford.co.uk/ind...index&cPath=38 2009-06-03 weekly 0.92
    http://fishingtackleoxford.co.uk/ind...dex&cPath=5_21 2009-06-03 weekly 0.89
    http://fishingtackleoxford.co.uk/ind...index&cPath=14 2009-06-03 weekly 0.86
    http://fishingtackleoxford.co.uk/ind...=index&cPath=5 2009-06-03 weekly 0.84
    http://fishingtackleoxford.co.uk/ind...=index&cPath=7 2009-06-03 weekly 0.81
    http://fishingtackleoxford.co.uk/ind...index&cPath=13


    Should they not be like this ????

    http://fishingtackleoxford.co.uk/car...zer-shelf-life


    Or do they just re-direct on google's part . Sorry to be thick
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  10. #3160
    Join Date
    Feb 2009
    Posts
    43
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    Your sitemap should also contain new links. Did you re-create the sitemap after you enable seo?
    In my case the links looks like similar (http://domainmane/index.php?main_page=index&cPath=13_43) even before and after I enable/disable the SSU and create google sitemap.

    When I click on product and category they seems to be fine as domain/category-c-id/product-p-id

 

 

Similar Threads

  1. v151 Simple SEO URLs for ZC 1.5.x [Support Thread]
    By cvhainb in forum All Other Contributions/Addons
    Replies: 46
    Last Post: 8 Jun 2022, 09:42 AM
  2. 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
  3. How do I tell what version my Simple SEO URL addon mod, and others, are?
    By kevinmc3 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 6 May 2010, 01:32 AM
  4. Can't create new thread in Simple SEO URL forum
    By gseiber in forum General Questions
    Replies: 1
    Last Post: 3 Apr 2010, 01:56 PM
  5. Re: Simple SEO URL [support thread]
    By creamcrackers in forum General Questions
    Replies: 2
    Last Post: 16 Aug 2009, 03:02 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