I see that your .htaccess is wrong, at least you have the config into the vhost
https://start.chaimkrause.com/.htaccess <https://start.chaimkrause.com/.htaccess>You have <IfModule php5_module> php_flag magic_quotes_gpc Off php_flag always_populate_raw_post_data On </IfModule> Options +FollowSymlinks RewriteEngine Off RewriteBase / And You need add this rule for mod_rewrite <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # NOTE: If you added a web_prefix to config, add it here too, e.g.: #RewriteRule (.*) /shindig/php/index.php [L] RewriteRule (.*) index.php [L] # for OAuth signatures to work for POSTed data, always_populate_raw_data needs to be turned on php_flag always_populate_raw_post_data On php_flag magic_quotes_gpc Off </IfModule> Add to the end of your .htaccess file On Mon, Jan 3, 2011 at 5:06 PM, Chaim Krause <[email protected]> wrote: > phpinfo() shows mod_rewrite is loaded. What else can I do to test? > > > > On 1/3/2011 2:04 PM, Agustin Casiva wrote: > > I think that Your configuration for mod_rewrite doesn't works.... > > > > -- Ing. Casiva Agustin Mail/Msn/GTalk/Jabber: [email protected] Skype: casivaagustin CEL : 054-03722-15270639 Site: http://www.casivaagustin.com.ar
