Re: Simple SEO URL [support thread]
I can't edit my post anymore.
My htaccess:
Quote:
#### 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]
#### EOF SSU
Re: Simple SEO URL [support thread]
Quote:
Originally Posted by
pseudonym
RewriteEngine On
# Make sure to change "zencart" to the subfolder you install ZC. If you use root folder, change to: RewriteBase /
RewriteBase /
# Deny access from .htaccess
RewriteRule ^\.htaccess$ - [F]
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
#### EOF SSU
What's wrong with it?
I have to know where your store is located to know what is wrong with it, for example if it is in a subfolder named shop then it should be RewriteBase /shop
If not, then it is correct. And if you still get the 500 error, you have to check the server error log to know precisely what goes wrong. 500 is a general error which can mean many things.
Re: Simple SEO URL [support thread]
I found the problem.
I did not have module_manager_rev16zip.zip installed. :oops:
It's working now! Phew!
One question though: is it possible to change the names of the main categories?
Right now my URL will look like: http://www.site.com/wild-flowers/blue-wild-flowers. The actual category is also called "Wild Flowers"
Still, I want to change the "wild-flowers" part into "buy-wild-flowers", so for example: http://www.site.com/buy-wild-flowers/blue-wild-flowers.
I've added an Alias like that in the Manage Aliases field, enabled it and made it permanent. But the URL does not change to that when I visit my home page. It is still "wild-flowers". I can access the page by hand-typing "/buy-wild-flowers", however it doesn't show up naturally..........
Any advice?
Thanks a lot for this plugin, it is much better than CEON SEO URLs!!!! :hug:
Re: Simple SEO URL [support thread]
After changing the urls in link alias manager, make sure you clear the alias cache.
Raine
Re: Simple SEO URL [support thread]
Hi,
Im desperate to get this mod installed on my website due to the great flexibility that it adds. However i currently have Magic SEO installed which i find frustrating and unusable on some items.
The thing im worried about is all the links which are currently ranked in google etc are going to be lost. Am i right in thinking this? or will they be picked up and redirected?
Many thanks
Paul
Re: Simple SEO URL [support thread]
Hi Paul, the current SSU will not pick up links generated by Magic Seo, so I suggest dont port right now. There have been several requests for this, which I do take into consideration seriously, and I do consider writing a plugin that allows a smooth transfer from Magic Seo to SSU, the task is not easy, however.
Magic Seo relies heavily on using regex to translate the links, while SSU relies on "identifiers" on the links (this behavior is similar to ultimate seo url module). One possiblity to get around this is to make use of link alias functionality of SSU, let me think of a way to implement it tho, lol.
Re: Simple SEO URL [support thread]
That would be great if you had some kind of plugin to help with the change over. I am tempted to just bite the bullet and make the change as i have a SEO company starting work on it in a few weeks and ofcourse the url's provide alot of weight in terms of search engines.
Ill keep checking back here and seeing how things are going.
Many thanks for your help
Paul
Re: Simple SEO URL [support thread]
I'm getting the same error as ccrsport
Quote:
When I "Set SSU Status" to true I get an error on the actual front end of my live site:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator,
[email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
Do you have any tips on how to configure SSU once it is installed?
my .htaccess is setup up as:
Quote:
AddHandler application/x-httpd-php5 .php
#### BOF SSU
Options +FollowSymLinks
RewriteEngine On
# Change "/zencart/ to the correct setting
# if your site is located at root folder, then you should have RewriteBase /
# Go to your include/configure.php, this value should be the same with the value of DIR_WS_CATALOG
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
all except the first line, I copied from the installation instructs.
my shop config file is:
Quote:
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
my store is located in the public_html folder of my website, which I believe is the root. Any ideas where the problem may be?
Re: Simple SEO URL [support thread]
RewriteBase /zencart/
Should be RewriteBase /
Regards
Re: Simple SEO URL [support thread]
sorry for my ignorance but where do I change,
RewriteBase /zencart/
Should be RewriteBase /
do I change it on the .htaccess or in my config file at DIR_WS_CATALOG
Thanks