Hi, I have installed both seo_urls_3.0.0-beta1.zip & SEO_fixes_for_3.0.0.b1.zip and my settings are:
Code:
Seo Urls Status On
301 Redirection Status On
Page Base
Default Extension
Url Plugins Core: Manufacturer, Core: Advanced Search, Core: Product: Reviews: Info, Core: Product: Reviews: Write, Core: Advanced Search: Result, Core: Default: Skip SSL, Core: EZ Pages, Core: Category, Core: Default, Core: Product, Core: Default Skips, Core: Product: Reviews
Character Plugins Format: Strip Invalid, Format: Lowercase
My .htaccess file is as follows:
Code:
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
# Seo Urls version 3.x
# Don't rewrite real files or directories
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index\.php?seo_url=$1&%{QUERY_STRING} [L]
# This will disallow google images to index all the images of your sites.
# All your pages will still be indexed though
RewriteCond %{HTTP_REFERER} ^http://images.google.com$ [NC]
RewriteRule !^403.htm$ - [F,L]
RewriteCond %{HTTP_REFERER} ^http://images.search.yahoo.com$ [NC]
RewriteRule !^403.htm$ - [F,L]
I'm just wondering if anyone has encountered the following in their URL:
mysite.com/gift-certificates
-c-57
mysite.com/gift-certificate
-p-680
apparently the letter "c" stands for category while "p" stands for product, and the numbers are their ID. Any advise on how to remove these trailing letter-number pair?
Bookmarks