htaccess doesn't work in litespeed

懵懂的女人 提交于 2019-12-08 03:52:28

问题


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?


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




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




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




回答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.



来源:https://stackoverflow.com/questions/19313736/htaccess-doesnt-work-in-litespeed

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!