Hi.
I upgrade plugin to last version, but it didn’t work. With all plugins disabled, i tested, and when it’s enabled, the page is blank, ,when it’s disabled the page works. So for sure, it’s the plugin’s fault.
That said, i have the htaccess content, which I believe it’s the cause of the blank page, though I don’t have a clue of what exactly is causing the issue. But for sure, it’s in here somewhere.
Can you please, help and tell me how to fix it?
Thank you very much!
PS: I tried several schemes, ‘most compatible’, ‘medium compatible’…nothing goes
WORKING CODE ————————————————————–
# 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
———————————————————-
NOT WORKING CODE —————————————————-
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteRule ^static/lib/(.*) /wp-includes/$1?cFGw_hide_my_wp=1234 [QSA,L]
RewriteRule ^file/(.*) /wp-content/uploads/$1?cFGw_hide_my_wp=1234 [QSA,L]
RewriteRule ^static/ext/(.*) /wp-content/plugins/$1?cFGw_hide_my_wp=1234 [QSA,L]
RewriteRule ^static/(.*) /wp-content/themes/portal_la_v3/$1?cFGw_hide_my_wp=1234 [QSA,L]
RewriteRule ^ajax /wp-admin/admin-ajax.php?cFGw_hide_my_wp=1234 [QSA,L]
RewriteRule ^wp-content/themes/portal_la_v3/screenshot\.png|readme\.html|license\.txt|wp-content/debug\.log|wp-includes/$ /nothing_404_404?cFGw_hide_my_wp=1234 [QSA,L]
RewriteRule ^(((wp-content|wp-includes)/([A-Za-z0-9\-\_\/]*))|(wp-admin/(!network\/?)([A-Za-z0-9\-\_\/]+)))(\.txt|/)$ /nothing_404_404?cFGw_hide_my_wp=1234 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
———————————————————-