Salta la navigazione

Etichettato: 

Questo ticket contiene 0 risposta, ha 1 voce.

Ultimo aggiornamento da mikhailV-2 1 anno fa.

Assistito da: Christopher Amirian.

Autore Messaggi
Maggio 6, 2024 a 12:32 pm #15597305

mikhailV-2

Hello, I have a bricks on my website. I wanted to delete Dutch translation of homepage, when I did it and tried to access any page, it was showing error 500. then I saw that homepage dropped in settings, and these lines in htaccess:

# 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.

RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /es/
RewriteRule ^index.php$ - [L]
RewriteRule ^nl/wp-login.php /es/wp-login.php [QSA,L]
RewriteRule ^en/wp-login.php /es/wp-login.php [QSA,L]
RewriteRule ^fr/wp-login.php /es/wp-login.php [QSA,L]
RewriteRule ^de/wp-login.php /es/wp-login.php [QSA,L]
RewriteRule ^it/wp-login.php /es/wp-login.php [QSA,L]
RewriteRule ^es/wp-login.php /es/wp-login.php [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /es/index.php [L]

# END WordPress