I'm having problem with pretty url
PermalinkMove your site to inmotionhosting. I think that will solve your problem.
define('URL_REWRITING_ALL', true);
"The problem with your rewrites is that apache thinks "index.php/foo/bar" is supposed to be a file, but of course it isn't :)
I'd suggest trying either
RewriteRule ^(.+)$ index.php?/$1
or
RewriteRule ^(.+)$ index.php/$1 [R]
Note the question mark in rule 1 and the new R flag in rule 2."
Fatcow may not be allowing your mod-rewrites to work. Those are pretty bad urls, though. How do the links resolve if you disable pretty urls? They should look more likehttp://crownconsultnacy.com/index.php/contact-us...
steve