I'm not tech saavy enough to properly explain the problem so bear with me. I'm a hosting reseller. My host uses litespeed, therefore I'm using Litespeed. My users are having problems with certain web applications and URL rewriting scripts. My host tells me it's the web applications/scripts, and the developers of said application/scripts say it's my web host and the fact they are using litespeed. I'm not knowledgeable enough to solve the problem, and the developers say they don't support litespeed, just apache.
One example application that doesn't work with litespeed is https://github.com/pagekit . It cannot get past the installation stage.
One example script that doesn't work is an addon I'm trying to use with WHMCS is CMS Plus by No Half Pixels. This is the .htaccess code I'm supposed to use and it doesn't work:
Is there anything we can do to get this working? The problems lie in url writing.
One example application that doesn't work with litespeed is https://github.com/pagekit . It cannot get past the installation stage.
One example script that doesn't work is an addon I'm trying to use with WHMCS is CMS Plus by No Half Pixels. This is the .htaccess code I'm supposed to use and it doesn't work:
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
Options +FollowSymlinks
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . modules/addons/whmcs_cms_plus/seourls.php [L,QSA]
</IfModule>