I'm having problems with a site that I have set up as a the main domain. Actually the problem is with the sub domains. I can't get to them with the .htaccess file that is create with CEON. If I don't use the .htaccess file I can get to them. Here is the file.
Not sure what I need to change. Help would be greatly appreciated.Code: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 any URIs for some, popular specific file format extensions, # which are not covered by main file extension condition above RewriteCond %{REQUEST_URI} !\.(mp3|mp4|h264)$ [NC] # Don't rewrite any URIs for some specific file format extensions, # which are not covered by main file extension condition above # Uncomment the following line to apply this condition! (Remove the # at the start of the next line) #RewriteCond %{REQUEST_URI} !\.(3gp|3g2|h261|h263|mj2|mjp2|mp4v|mpg4|m1v|m2v|m4u|f4v|m4v|3dml)$ [NC] # Don't rewrite admin directory RewriteCond %{REQUEST_URI} !^/adminghi [NC] # Don't rewrite editors directory RewriteCond %{REQUEST_URI} !^/editors/ [NC] # Don't rewrite bmz_cache directory RewriteCond %{REQUEST_URI} !^/bmz_cache/ [NC] # Don't rewrite rayshookconstruction.com directory RewriteCond %{REQUEST_URI} !^/rayshookconstruction\.com/ [NC] # Don't rewrite cgi-bin directory RewriteCond %{REQUEST_URI} !^/cgi\-bin/ [NC] # Don't rewrite logs directory RewriteCond %{REQUEST_URI} !^/logs/ [NC] # Don't rewrite b-goat.com directory RewriteCond %{REQUEST_URI} !^/b\-goat\.com/ [NC] # Don't rewrite sitemap directory RewriteCond %{REQUEST_URI} !^/sitemap/ [NC] # Don't rewrite temp.jaciscookies.com directory RewriteCond %{REQUEST_URI} !^/temp\.jaciscookies\.com/ [NC] # Handle all other URIs using Zen Cart (its index.php) RewriteRule .* index.php [QSA,L]
Billie


Reply With Quote

