'htaccess doesn't work in litespeed
I use the following rewrite on my site and it worked fine in shared server.
RewriteEngine On
<Files .*>
Order Deny,Allow
Deny From All
</Files>
<Files ~ "^\.ht">
order allow,deny
deny from all
satisfy all
</Files>
<FilesMatch "^php5?\.(ini|cgi)$">
Order Deny,Allow
Deny from All
Allow from env=REDIRECT_STATUS
</FilesMatch>
AddDefaultCharset utf-8
Options All -Indexes
RewriteCond %{REQUEST_FILENAME} \.(gif|jpe?g|png|js|css|swf|ico|txt|pdf|xml)$ [OR]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ public_html/index.php [NC,L]
But now it shows the following error.
404 Not Found
The resource requested could not be found on this server!
Powered By LiteSpeed Web Server
LiteSpeed Technologies is not responsible for administration and contents of this web site!
How can I fix this error?
It acts differently on LiteSpeed?
Solution 1:[1]
Are you using Litespeed Enterprise or Openlitespeed?
OpenLitespeed cannot work with the .htaccess file, you need to configure it via web admin: Edit virtual host -> Rewrite
Litespeed Enterprise should work with the htaccess file, make sure you configure it to work with it:
Edit virtual host -> Rewrite -> Enable Rewrite: NO
Solution 2:[2]
Openlitespeed support with .htaccess, but must setting in Openlitespeed admin panel. From Openlitespeed admin panel click Virtual Host, Select your vhost. Klik Rewrite Tab, select 'Yes' in Rewrite Control->Enable Rewrite. Point your file in Rewrite Rules, for example /usr/local/lsws/web/.htaccess, and restart litespeed.
If you use centos, you can use auto install script with multi vhost support from https://github.com/tujuhion/openlitespeed-centos-autoinstall
Solution 3:[3]
In my experience OpenLiteSpeed loads most of rewrites correctly but you have to prepend the rules with "/?", because of the optional initial slash.
FilesMatch rules need to be set at context or rewrite level, please see here:
https://openlitespeed.org/kb/access-control/#Controlling_Access_to_Files
Solution 4:[4]
for each version of php in litespeed panel; you must add a seperate script-handler and external-app, finally gracfully restart your lsws service.
Solution 5:[5]
If you are in OpenLiteSpeed after adding any rule you need to do a webserver restart. use this command to restart your webserver.
systemctl restart lsws
More you can also add from the rewrite rules in web admin.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Alum |
| Solution 2 | Yanwar Purnama |
| Solution 3 | |
| Solution 4 | rezshar |
| Solution 5 | Shoaib khan khattak |
