
June 16th, 2007, 05:43 PM
|
 |
Contributing User
|
|
|
|
|
Uggh...rewrite ZenCart Urls
I have written and rewritten my .htaccess for a ZenCart based store. I am not having any success with rewriting my urls. Can you help me with the appropriate code?
www(dot)theoriginalcuepod(dot)com/billiard-supplies/
My .htaccess as it is now:
Quote: RewriteEngine on
Options +FollowSymlinks
RewriteCond %{HTTP_HOST} !^www\.theoriginalcuepod.com [NC]
RewriteRule ^(.*) http://www.theoriginalcuepod.com/$1 [L,R=301]
ErrorDocument 404 /404.html |
|