I have been troling the OpenCart forums for around 2 days now, I downloaded v 1.3.4 insalled everthing A ok.
The problem I am having is configuring SEO url's. My Apache server is enabled to take htaccess instructions.
The code I have in the htaccess file is as follows:
Code: Select all
php_flag register_globals off
php_flag magic_quotes_gpc off
# 1.To use URL Alias you need to be running apache with mod_rewrite enabled.
# 2. In your opencart directory rename htaccess.txt to .htaccess.
# For any support issues please visit: http://www.opencart.com
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)\?*$ index.php?_route_=$1 [L,QSA]
# Please ensure register_globals is Off by uncommenting this line
#php_flag register_globals Off
# URL Alias - see install.txt
Options +FollowSymlinks
<IfModule mod_rewrite.c>
RewriteEngine On
# Put your installation directory here:
# If your URL is www.example.com/shop/, use /shop/
# If your URL is www.example.com/, use /
RewriteBase /
#OPENCART REWRITES START
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php
#OPENCART REWRITES END
</IfModule>
Thank you
Ben
