|
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>
|