• Support
  • Openlitespeed htaccess not working

I even installed fresh aapanel with openlitespeed in new vps, and htaccess not functioning / not working at all.

As example, I pasted this code above wordpress default code.

Deny from All

It supposed to deny all entry into the website, but the website doesn't deny anything.
Pls help htaccess issue.

    KrzysztofMaciejewski same, I already restart it after change, same results.
    I even tried restart the whole vps, same not working htaccess.
    Here is the default code.

    Deny from All
    
    # BEGIN WordPress
    # The directives (lines) between `BEGIN WordPress` and `END WordPress` are
    # dynamically generated, and should only be modified via WordPress filters.
    # Any changes to the directives between these markers will be overwritten.
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress
    a year later
    7 months later

    The only solution I have found that works:
    If you want to create your own configuration file for URL rewriting and redirects, you can create a file with a .conf extension and place it in the /www/server/panel/vhost/openlitespeed/proxy/site.ru/urlrewrite/ folder if you are using OpenLiteSpeed Web Server. In this file, you can use URL rewrite and redirect rules for your site. After creating the configuration file, you must restart the server for the changes to take effect.

    The rules must be written in this format:
    RewriteEngine on
    RewriteRule ^/oldurl.php(.) https://site.ru/newurl.php [L,R=301]
    RewriteRule ^/oldurl2.php(.
    ) https://site.ru/newurl2.php [L,R=301]

    The characters in the previous message were deleted. This is correct as shown in the image.