New Zenner
- Join Date:
- Feb 2010
- Posts:
- 81
- Plugin Contributions:
- 0
Ceon URI Mapping (SEO)
Thank you for the great mod. I am using this on another site without issue. However, I am working on another site that is still using a temporary IP. Whenever I enter the information into my .htaccess file my whole site gets a 404. My site can be accessed at http://74.220.219.69/~eclipset/ . I currently taken out the info in the .htaccess but this is what I had entered while it was crashing.
RewriteEngine On
Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
RewriteCond %{REQUEST_URI} !.[a-z]{2,5}$ [NC]
Don't rewrite admin directory
RewriteCond %{REQUEST_URI} !^/zc_admin [NC]
Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/editors [NC]
Don't rewrite cPanel directories
RewriteCond %{REQUEST_URI} !/cpanel [NC]
RewriteCond %{REQUEST_URI} !/frontend [NC]Handle all other URIs using Zen Cart (index.php)
RewriteRule .* index.php?%{QUERY_STRING} [L]
Any help would be greatly appreciated.
*also forgot to mention I have the mod disabled atm until I figure out why it is breaking my site.