Hi.
Mostly our litespeed upgrade has been working. We have switched our servers to production version of litespeed.
Only problem, for some clients is mod rewrite.
If you go to one of our clients site, like
http://blog.tailoredvps.com/announcements/we-have-got-new-nodes-and-vps-plans/
you will notice that the page layout is no longer displaying correctly.
I believe it has something to do with mod rewrite or the .htaccess file. However, other sites with rewrite on is working fine, so I'm a bit puzzled. Below is the .htaccess file contents:
AddType application/x-httpd-php .php .htm .html .php5
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
The above was working fine with apache.
Mostly our litespeed upgrade has been working. We have switched our servers to production version of litespeed.
Only problem, for some clients is mod rewrite.
If you go to one of our clients site, like
http://blog.tailoredvps.com/announcements/we-have-got-new-nodes-and-vps-plans/
you will notice that the page layout is no longer displaying correctly.
I believe it has something to do with mod rewrite or the .htaccess file. However, other sites with rewrite on is working fine, so I'm a bit puzzled. Below is the .htaccess file contents:
AddType application/x-httpd-php .php .htm .html .php5
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
The above was working fine with apache.