Page 26 of 506 FirstFirst ... 1624252627283676126 ... LastLast
Results 251 to 260 of 5054
  1. #251
    Join Date
    Feb 2006
    Location
    Central Coast, NSW, Australia
    Posts
    560
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    Is this on the same server with your test site? Do you have a link? I need more info to be able to know what the problem is? Also post your htaccess here.
    The test site is on my local PC.. the Server is i the US....

    Thisis the .htaccess I'm using

    #### BOF SSU
    Options +FollowSymLinks
    RewriteEngine On
    # Make sure to change "zencart" to the subfolder you install ZC. If you use root folder, change to: RewriteBase /
    RewriteBase /home/mikedean/

    # Deny access from .htaccess
    RewriteRule ^\.htaccess$ - [F]

    RewriteCond %{SCRIPT_FILENAME} -f [OR]
    RewriteCond %{SCRIPT_FILENAME} -d

    RewriteRule .* - [L]

    RewriteRule ^(.+) index.php/$1 [E=VAR1:$1,QSA,L]

  2. #252
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Your htaccess is not up-to-date

    Code:
    #### BOF SSU
    Options +FollowSymLinks -MultiViews
    RewriteEngine On
    # Make sure to change "test_site" to the subfolder you install ZC. If you use root folder, change to: RewriteBase / 
    RewriteBase /zencart/
    
    # Deny access from .htaccess
    RewriteRule ^\.htaccess$ - [F]
    
    RewriteCond %{SCRIPT_FILENAME} -f [OR]
    RewriteCond %{SCRIPT_FILENAME} -d
    RewriteRule .* - [L]
    
    RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
    #### EOF SSU
    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

  3. #253
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Also, RewriteBase has nothing to do with absolute path, if your site is located at: yoursite.com/shop the the base needs to be:

    RewriteBase /shop/
    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

  4. #254
    Join Date
    Feb 2006
    Location
    Central Coast, NSW, Australia
    Posts
    560
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    Your htaccess is not up-to-date

    Code:
    #### BOF SSU
    Options +FollowSymLinks -MultiViews
    RewriteEngine On
    # Make sure to change "test_site" to the subfolder you install ZC. If you use root folder, change to: RewriteBase / 
    RewriteBase /zencart/
    
    # Deny access from .htaccess
    RewriteRule ^\.htaccess$ - [F]
    
    RewriteCond %{SCRIPT_FILENAME} -f [OR]
    RewriteCond %{SCRIPT_FILENAME} -d
    RewriteRule .* - [L]
    
    RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
    #### EOF SSU

    Ok we have progress..! Thanks..!! Everything apperas to be ok on the site, will look at admin as see what goes there..

    htaccess now reads

    #### BOF SSU
    Options +FollowSymLinks
    RewriteEngine On
    # Make sure to change "zencart" to the subfolder you install ZC. If you use root folder, change to: RewriteBase /


    # Deny access from .htaccess
    RewriteRule ^\.htaccess$ - [F]

    RewriteCond %{SCRIPT_FILENAME} -f [OR]
    RewriteCond %{SCRIPT_FILENAME} -d


    RewriteRule .* - [L]

    RewriteRule ^(.+) index.php/$1 [E=VAR1:$1,QSA,L]



    Prior to SSU, I had an existing .htaccess file which had this (for my 301 re-directions


    RewriteCond %{HTTP_HOST} ^nortsandones.com.au$ [OR]
    RewriteCond %{HTTP_HOST} ^www.nortsandones.com.au$
    RewriteRule ^/?$ http://www.nortsandones.com.au/index.php?main_page= [R=301,L]


    I tried to include this in with the SSU .htacess but I cant get past the pain page without gettng an error

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

    Default Re: Simple SEO URL [support thread]

    The htaccess content you posted is still not exactly what we have in the current version, while it may work it may cause us problem if you run into some error later and we dont know what causes it.

    Regards
    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

  6. #256
    Join Date
    Feb 2006
    Location
    Central Coast, NSW, Australia
    Posts
    560
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    The htaccess content you posted is still not exactly what we have in the current version, while it may work it may cause us problem if you run into some error later and we dont know what causes it.

    Regards


    This is out of ver 234

    #### BOF SSU
    Options +FollowSymLinks -MultiViews
    RewriteEngine On
    # Make sure to change "test_site" to the subfolder you install ZC. If you use root folder, change to:

    RewriteBase /

    # Deny access from .htaccess
    RewriteRule ^\.htaccess$ - [F]

    RewriteCond %{SCRIPT_FILENAME} -f [OR]
    RewriteCond %{SCRIPT_FILENAME} -d
    RewriteRule .* - [L]

    RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
    #### EOF SSU

    If it's not right... please tell me whats wrong with it.?


    Also, how do I now mod it to include my 301 redirections ?

  7. #257
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Mike, in your previous post you have:
    Code:
     Options +FollowSymLinks
    RewriteEngine On
    # Make sure to change "zencart" to the subfolder you install ZC. If you use root folder, change to: RewriteBase / 
    
    
    # Deny access from .htaccess
    RewriteRule ^\.htaccess$ - [F]
    
    RewriteCond %{SCRIPT_FILENAME} -f [OR]
    RewriteCond %{SCRIPT_FILENAME} -d
    
    
    RewriteRule .* - [L]
    
    RewriteRule ^(.+) index.php/$1 [E=VAR1:$1,QSA,L]
    Which is why I said it's not exactly the same.

    As for this:

    RewriteCond %{HTTP_HOST} ^nortsandones.com.au$ [OR]
    RewriteCond %{HTTP_HOST} ^www.nortsandones.com.au$
    RewriteRule ^/?$ http://www.nortsandones.com.au/index.php?main_page= [R=301,L]

    Are you trying to redirect to www?

    Regards
    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

  8. #258
    Join Date
    Feb 2006
    Location
    Central Coast, NSW, Australia
    Posts
    560
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    Mike, in your previous post you have:
    Code:
     Options +FollowSymLinks
    RewriteEngine On
    # Make sure to change "zencart" to the subfolder you install ZC. If you use root folder, change to: RewriteBase / 
    
    
    # Deny access from .htaccess
    RewriteRule ^\.htaccess$ - [F]
    
    RewriteCond %{SCRIPT_FILENAME} -f [OR]
    RewriteCond %{SCRIPT_FILENAME} -d
    
    
    RewriteRule .* - [L]
    
    RewriteRule ^(.+) index.php/$1 [E=VAR1:$1,QSA,L]
    Which is why I said it's not exactly the same.

    As for this:

    RewriteCond %{HTTP_HOST} ^nortsandones.com.au$ [OR]
    RewriteCond %{HTTP_HOST} ^www.nortsandones.com.au$
    RewriteRule ^/?$ http://www.nortsandones.com.au/index.php?main_page= [R=301,L]

    Are you trying to redirect to www?

    Regards

    Hi,

    Yes I saw the error in the previous one, so I posted you the new one just to confirm it was now right..?

    Yes, I am trying to redirect to www

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

    Default Re: Simple SEO URL [support thread]

    Put this right after rewrite engine on, see what happens

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

    Make sure that if you chose to use www, you have to set so in your includes/configure.php as well
    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. #260
    Join Date
    Feb 2006
    Location
    Central Coast, NSW, Australia
    Posts
    560
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    Put this right after rewrite engine on, see what happens

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

    Make sure that if you chose to use www, you have to set so in your includes/configure.php as well
    Ok.. that worked

    Thanks for the great support..

 

 

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