Page 258 of 506 FirstFirst ... 158208248256257258259260268308358 ... LastLast
Results 2,571 to 2,580 of 5054
  1. #2571
    Join Date
    Dec 2008
    Location
    San Fran
    Posts
    382
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    Where do you place these redirection? They have to be BEFORE

    Code:
    RewriteCond %{SCRIPT_FILENAME} !-f
    RewriteCond %{SCRIPT_FILENAME} !-d
    RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
    They were after, but after putting them before I still get the same problem. It's like this:

    Code:
    #### BOF SSU
    #Options +FollowSymLinks -MultiViews
    RewriteEngine On
    RewriteBase /
    
    # Deny access from .htaccess
    RewriteRule ^\.htaccess$ - [F]
    
    RewriteCond %{SCRIPT_FILENAME} !-f
    RewriteCond %{SCRIPT_FILENAME} !-d
    RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA]
    
    # Begin site redirects
    redirect 301 /indian-hair-products.php http://www.perfectlocks.com/about-perfect-locks-hair
    Is that correct?

  2. #2572
    Join Date
    Jun 2006
    Location
    UK
    Posts
    65
    Plugin Contributions
    0

    Default Multiple redirects

    Some users (not only mac users) are getting the following error:

    Safari can’t open the page.
    Too many redirects occurred trying to open
    http://store.splatcooking.net/index/...cription/1/ke…
    sort=20a&action=multiple_products_add_product”. This might
    occur if you open a page that is redirected to open another page
    which then is redirected to open the original page.

    Here is my .htaccess:
    Code:
    #### BOF SSU 
    Options +FollowSymLinks -MultiViews 
    RewriteEngine On 
    RewriteBase /store/ 
    
    # Deny access from .htaccess 
    RewriteRule ^\.htaccess$ - [F] 
    
    RewriteCond %{HTTP_HOST} ^www.splatcooking\.net [NC]
    RewriteCond %{REQUEST_URI} ^/store/$
    RewriteRule ^(.*)$ http://store.splatcooking.net/$1 [R=301,L]
    
    RewriteCond %{SCRIPT_FILENAME} !-f 
    RewriteCond %{SCRIPT_FILENAME} !-d 
    RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA] 
    
    # STRIP THE REWRITEBASE RULE FROM NON-SSL CONNECTIONS. 
    RewriteCond %{SERVER_PORT} 80 
    RewriteCond %{HTTP_HOST} store.splatcooking.net 
    RewriteCond %{REQUEST_URI} ^/store/ 
    RewriteRule ^(.*) /index.php?/$1 [E=VAR1:$1,QSA,L] 
    #### EOF SSU
    any ideas?

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

    Default Re: Simple SEO URL [support thread]

    Your SSU version? if not 3.6.4, upgrade. Also check

    http://wiki.rubikintegration.com/zen...les/ssu/config

    Make sure the exclude list for pages and query are correct.
    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. #2574
    Join Date
    Mar 2005
    Posts
    174
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Hello!

    I've installed this and it's working great. I have one question.

    I'm using the Wordpress on Zen Cart add-on. The URL for wordpress is supposed to be: /index.php?main_page=wordpress, but with the new version of Wordpress, that doesn't work. I've gotten around it by using /?main_page=wordpress (no index.php).

    As soon as I got SEO URLs working, the blog page stopped working.

    I can't find a way with this set up to block /?main_page=wordpress from the URLs. Any tips?

    Thanks,
    Arianne

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

    Default Re: Simple SEO URL [support thread]

    http://wiki.rubikintegration.com/zen...les/ssu/config

    Regards

    If it still doesnt work, please post or pm the link to the site.
    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. #2576
    Join Date
    Mar 2005
    Posts
    174
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Thanks! I took a look at this when I was setting everything up, but "wordpress" in the exclude list seems to only exclude index.php?main_page=wordpress, not just ?main_page=wordpress.

    When I turn the SEO URLs on and go to /?main_page=wordpress, I'm redirected back to the main page of the site.

    You can see the problem at c r y s t a l y n k a e.com/?main_page=wordpress - the other URLs are working fine!

    Thanks in advance,
    Arianne

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

    Default Re: Simple SEO URL [support thread]

    If you are using link alias, you should clear SSU cache first.
    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. #2578
    Join Date
    Mar 2005
    Posts
    174
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    I've cleared the cache and still no luck. Am I setting the alias right? I have /?main_page=wordpress/ as the link and /blog/ as the alias, but both URLs direct to the main page.

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by aeolidia View Post
    I've cleared the cache and still no luck. Am I setting the alias right? I have /?main_page=wordpress/ as the link and /blog/ as the alias, but both URLs direct to the main page.
    Huhm, why would you use ?main_page= anyway? normally it should come with the index.php
    you are setting alias wrong, btw, if you want to use that, it should be:

    /wordpress/ and /blog/
    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. #2580
    Join Date
    Mar 2005
    Posts
    174
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Yes, I'm in a bit of trouble, because the only way I can get Wordpress to work is to *remove* index.php, but then that makes it incompatible with the SEO URLs. When I try /wordpress/ in the alias, it doesn't work - I think because it's expecting the index.php.

    Thanks for the help! If anyone has any clever ideas for me, I'll try them, otherwise I think we'll have to use Wordpress separately instead of embedding it in Zen Cart.

    Edited: Eek! It's working! I had somehow turned aliases off, and now I've turned them back on and all is well. Thank you thank you thank you!
    Last edited by aeolidia; 6 Mar 2009 at 07:22 AM.

 

 

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