SHPD17 Hi there. For now the cms is tested regularly on multiple Apache and Nginx servers. While it works on LiteSpeed, the URL rewriting has to be set up manually. There are multiple options for that. I think the safest is to configure your server to define PATH_INFO
and define a rewrite rule to remove index.php
from the request. After doing so you can set AM_INDEX
to an empty string in config.json
.
Alternatively you can also rewrite the URL by prepending the requested page to the query string to look as follows:
RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
In LiteSpeed that rule should look similar. And again then set AM_INDEX
to an empty string in config.json
.