Montag, 10. September 2018

WP suggestions how to fix 500 internal error

https://www.wpbeginner.com/wp-tutorials/how-to-fix-the-internal-server-error-in-wordpress/

htaccess file with php 71

Action php /cgi-php7/php
AddHandler php7 .php



# BEGIN WordPress

RewriteEngine On
RewriteBase /wordpress/shoppe/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/shoppe/index.php [L]

# END WordPress