View Single Post
  #4  
Old 01-18-2012, 12:35 AM
NiteWave NiteWave is offline
LiteSpeed Staff
 
Join Date: Sep 2009
Posts: 2,226
please try to remove:
AddType application/x-httpd-php .php .htm .html .php5

and see if it back to normal.

use following rewriterule should fix the issue, but just an workaround.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule (.*\.css) http://tailoredvps.com/$1 [R,L]

RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Reply With Quote