View Single Post
  #3  
Old 03-09-2006, 09:22 AM
hugemikeyd hugemikeyd is offline
Member
 
Join Date: Mar 2006
Location: New York
Posts: 42
i had already turned off the persistant connection with the fcgi, as i had read that it wouldn't work at all if that option was enabled.

Also, for the rewrite rules, i moved them into the configuration of the server:
Code:
RewriteRule ^$ index.html [QSA]
RewriteRule ^([^.]+)$ $1.html [QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
but i will give it a shot with your way[/code]
Reply With Quote