Hi!

I'm having some issues with this module. It's working, in that when I click on a link, it uses the new url, BUT, it's not being written into the source before clicking the link. For example, when I hover over a link, in the bar at the bottom of the browser, it shows the index.php?main_page=index&cPath=1 link instead of the rewritten link.

I've checked that all files were uploaded. Perhaps you can give some hints on where to look. My .htaccess is below:

RewriteEngine On

# ONLY rewrite URIs beginning with /newstore/
RewriteCond %{REQUEST_URI} ^/newstore/
# Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
RewriteCond %{REQUEST_URI} !\.[a-z]{2,5}$
# Don't rewrite admin directory
RewriteCond %{REQUEST_URI} !^/newstore/admin
# Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/newstore/editors
# Don't rewrite cPanel directories
RewriteCond %{REQUEST_URI} !/cpanel
RewriteCond %{REQUEST_URI} !/frontend
# Handle all other URIs using Zen Cart (index.php)
RewriteRule .* index.php?%{QUERY_STRING} [L]