Error 404 Not Found

#1
Sorry for my english.

Hello everyone! I recently updated CyberPanel to 2.1 and some hell of a thing started. First, the LiteSpeed Enterprise Web Server license flew. And after its re-activation, the page of my site began to issue a 404 error on all pages except the home page. Can you please tell me where to look for a solution to the problem?

Parts of my .htaccess:
Code:
# BEGIN SMART PUSH FAST BRIDGE
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^push/([_0-9a-zA-Z-]+)/?(.*)?$ index.php?smpushcontrol=$1/$2&%{QUERY_STRING}
RewriteCond %{QUERY_STRING} ^smpushcontrol=(get_archive|get_link|go)(.*)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ smart_bridge.php?%{QUERY_STRING} [L]
</IfModule>
# END SMART PUSH FAST BRIDGE

....

# BEGIN WordPress
# Директивы (строки) между `BEGIN WordPress` и `END WordPress`
# созданы автоически и подлеа изменению толко через фильтры WordPress.
# Сделанные вручную изменени между этими маркерами удут перезаписаны.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301, L]
</IfModule>

# END WordPress
My permalinks settings:
Снимок12121.PNG

Thanks in advance for helping me.
 
Top