Page 3 of 3
Re: SEO URLs not working
Posted: Fri Jul 15, 2016 9:31 pm
by Grace123
Hi,
I currently have opencart 2.0.0 am I able to use the SEO Keywords on s windows server??
Re: SEO URLs not working
Posted: Wed Jan 31, 2018 7:03 am
by misterzorik
Dear OpenCart Community.
I am using OC Version 3.0.0.0
I did activate the SEO URL in Admin Panel > System > Settings > Stores > Server > USE SEO URLs
But when i name an category or a product in the SEO tab i name a URL Friendly for example name_name2
I get a NOT Found Error.
The requested URL /v300/Dental-Equipment/Dental-Chairs-Stools was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
How do I fix this issue?? please help me
Thanks alot in advance
Re: SEO URLs not working
Posted: Wed Feb 27, 2019 11:46 pm
by sameverything
Hey man, this helped me. Thanks a lot. I'm putting this in for whoever searches on Google and has the same issue as I had:
I had this issue
I installed WordPress on website.com
And installed OpenCart on a subdirectory. E.g. website.com/shop
I start seeing WordPress's 404 default when something went wrong, e.g. website.com/shop/asasa would divert me back to wordpress
This was annoying as some modules stopped working
The solution was to put this code on OpenCart's .htaccess file
AND the following code on WordPress .htaccess file :
Code: Select all
RewriteCond %{REQUEST_URI} !^/(shop|shop/.*)$
Hope this helps
Sam
wernerrenrew wrote: ↑Tue Nov 01, 2011 12:57 pm
Hi
If you are not seeing your shop page 404
Code: Select all
# SEO URL Settings
RewriteEngine On
# If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/
RewriteBase /
RewriteRule sitemap.xml /nameInstallFolder/index.php?route=feed/google_sitemap
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^?]*) /nameInstallFolder/index.php?_route_=$1 [L,QSA]