I can not enter my Wordpress (Pagina Empresa Ayuda)

0

This is the website of my company

link

I use it every day, it's where customers order me.

Without it I am lost, as a result of trying to fix some problems that have arisen today.

That's how it ended, unable to enter or even me.

I do not even have the .htaccess file nor do I know how to start

I have been trying to fix it for more than 5 hours, the problem I need to access OR YES OR IF, or I will lose thousands of data.

Please, I need help, thanks

    
asked by Javier Avila Fernandez 28.06.2018 в 02:07
source

2 answers

2

The error that your site presents is due to a redirect loop. Before you move anything into files on your site or database, try the following:

If you have lost the .htaccess generate it again:

# BEGIN WordPress
<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

If you use SSL, your .htaccess should look something like this:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{ENV:HTTPS} !=on
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

Delete your cookies (those of your site) and try ...

See if you have the same problem. If so, and to find out what is causing it and try to solve the problem, try entering your FTP and disable the plugins (change the name of the folder for any other, later restore it). If the error disappears when you disable the plugins, it now restores the name of the folder and tries to perform the same procedure with each of the plugins to determine which or which are causing the problem.

Remember to erase cookies and temporary files in each attempt. I hope it serves you.

    
answered by 28.06.2018 / 05:37
source
0

If your problem is that you deleted or edited the .htaccess and you have access to the server, create a new file in the root of the page with the following:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
</IfModule>

Good luck!

    
answered by 28.06.2018 в 04:27