I am not sure what I am doing wrong but I can never seem to get any SEO mod installed right away.
I am testing this on a development site. The site is installed in a sub-folder called /dev/.
I uploaded all the files for the Zen cart 1.38a core files and the additional files to the dev folder. Added the following .htaccess code
Code:
<PRE>RewriteEngine On</PRE>
<PRE># Don't rewrite any files ending with .[xxxx], except for scripts/HTML files
RewriteCond %{REQUEST_URI} !\.[a-zA-Z]{2,4}$ [OR]
RewriteCond %{REQUEST_URI} \.(php|xml|html|htm|aspx)$ [NC]
# Only rewrite pages inside the dev directory
RewriteCond %{REQUEST_URI} ^/dev/.* [NC]
# Don't rewrite admin directory
RewriteCond %{REQUEST_URI} !/dev/admin.* [NC]
# Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/editors.* [NC]
# Don't rewrite payment pages/callback handlers
RewriteCond %{REQUEST_URI} !/dev/ipn_main_handler.php.* [NC]
RewriteCond %{REQUEST_URI} !/dev/iridium_3d_secure_iframe.php.* [NC]
RewriteCond %{REQUEST_URI} !/dev/localities_remote_loader.php.* [NC]
RewriteCond %{REQUEST_URI} !/dev/nochex_apc_handler.php.* [NC]
RewriteCond %{REQUEST_URI} !/dev/protx_direct_3d_secure_iframe.php.* [NC]
RewriteCond %{REQUEST_URI} !/dev/realex_remote_3d_secure_iframe.php.* [NC]
# Handle all other URIs/file types (php|html|htm etc.) using Zen Cart (index.php)
RewriteRule (.*) dev/index.php?%{QUERY_STRING} [L]</PRE>
But If I go to the site I get server error (500). Is there something wrong with my htaccess file??? The configure file is configure that the catalog path is /dev/.
Bookmarks