How to fix wordpress admin blank (wp-admin)
Wordpres blank occurs because the first version of php
upload php is the old version so it took the old version is also usually found on the page admin or wp - admin
to overcome these we have to go into our cpanel and change the file , the file that was changed is .htaccess
Before Change :
.htaccess
---------
AddType application/x-httpd-php55php
RewriteEngine on
<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
RewriteCond %{HTTP_HOST} ^pomadesurabaya\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.pomadesurabaya\.com$
RewriteRule ^wp\-admin$ "http\:\/\/www\.pomadesurabaya\.com\/" [R=302,L]
RewriteCond %{HTTP_HOST} ^pomadesurabaya\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.pomadesurabaya\.com$
RewriteRule ^vku$ "http\:\/\/www\.pomadesurabaya\.com\/wp\-login\.php" [R=302,L]
Options All -Indexes
-------
After Change :
.htaccess
---------
AddType application/x-httpd-php53php
RewriteEngine on
# 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
RewriteCond %{HTTP_HOST} ^pomadesurabaya\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.pomadesurabaya\.com$
RewriteRule ^wp\-admin$ "http\:\/\/www\.pomadesurabaya\.com\/" [R=302,L]
RewriteCond %{HTTP_HOST} ^pomadesurabaya\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.pomadesurabaya\.com$
RewriteRule ^vku$ "http\:\/\/www\.pomadesurabaya\.com\/wp\-login\.php" [R=302,L]
-----------
if not fix just sent to my email blastingsurabaya@gmail.com


