You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
I have SEO turned on and my .htaccess file in place. Everything appears to be working until the first click. One the new page is pulled up all links forward are not SEO format. My .htaccess file is setup exactly as shown in the example link in this forum.
# Turn Rewite Engine On
Options +FollowSymLinks
RewriteEngine on
# Version 8 Rewrite Rules
RewriteRule ^index.php - [L,PT]
RewriteRule ^$ index.php?COREseourl=/ [L,PT]
RewriteRule ^/$ index.php?COREseourl=/ [L,PT]
RewriteRule ^sitemap\.xml utilities/sitemap.xml [L,PT]
RewriteRule ^rss\.xml utilities/rss.xml [L,PT]
RewriteCond %{REQUEST_URI} ^/
RewriteCond %{REQUEST_URI} !\.(xml|css|js|gif|jpg|jpeg|png|pdf)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php?COREseourl=/$1 [L,PT]
Any help greatly appreciated.
Dave
Last edited by suprdave (11-24-2014 16:39:41)
Offline
I'd imagine your cookie settings you've entered in your installer are incorrect. If you post both your SSL and Non-SSL URLs, we can let you know what those settings should be.
Offline
That was it. Thanks for your help!
Offline
I am having the same issue. Here are my url's
http://www.bunk-bed-loft-bed.com/ccp8/i … ref=splash
https://www.bunk-bed-loft-bed.com/ccp8/ … ref=splash
Offline
Hello,
I'm having this issue too and my .htaccess and cookie settings seem to be fine.
Here is my .htaccess, which is in my root directory:
# Turn Rewite Engine On
Options +FollowSymLinks
RewriteEngine On
# Old SEO Rule Rewrites
RewriteRule ^ccp0-display/(.*)\.html$ index.php?app=cms&ns=display&ref=$1 [L,PT]
RewriteRule ^ccp0-dynform/(.*)\.html$ index.php?app=cms&ns=dynform&ref=$1 [L,PT]
RewriteRule ^ccp0-(.*)/(.*)\.html$ index.php?app=ecom&ns=$1&ref=$2 [L,PT]
RewriteRule ^gbu0-display/(.*)\.html$ index.php?app=cms&ns=display&ref=$1 [L,PT]
RewriteRule ^gbu0-dynform/(.*)\.html$ index.php?app=cms&ns=dynform&ref=$1 [L,PT]
RewriteRule ^gbu0-(.*)/(.*)\.html$ index.php?app=ecom&ns=$1&ref=$2 [L,PT]
# Version 8 Rewrite Rules
RewriteRule ^index.php - [L,PT]
RewriteRule ^$ index.php?COREseourl=/ [L,PT]
RewriteRule ^/$ index.php?COREseourl=/ [L,PT]
RewriteRule ^sitemap\.xml utilities/sitemap.xml [L,PT]
RewriteRule ^rss\.xml utilities/rss.xml [L,PT]
RewriteCond %{REQUEST_URI} ^/
RewriteCond %{REQUEST_URI} !\.(xml|css|js|gif|jpg|jpeg|png|pdf)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php?COREseourl=/$1 [L,PT]
and my cookie settings are:
Both SSL and Non-SSL settings :
Domain: .dndparts.com
Path: /cookies
My website is wwwdndparts.com
Offline
I changed the cookie paths to /not/cookies but it's still not working.
I added a "not" directory with a "cookie" directory inside and it still didn't work.
I deleted both directories too and it still didn't work.
Should there be a "not" directory with a "cookie" directory inside of it on my server or not?
Either way, it's not working. Do you have any other suggestions?
Offline
I think you are supposed to just have a forward slash as your cookie path, no other wording.
Offline
wow (as I slap myself in the face)
Thanks Nigel.
Nick, that did the trick. Thanks.
Offline