skip to Main Content

Brower back button issue in wordpress after logout

I am using the below redirect code in the functions.php file. add_action('wp_logout','auto_redirect_after_logout'); function auto_redirect_after_logout(){ $adfsurllogouturl = 'some url'; wp_redirect( $adfsurllogouturl );exit(); } It's working fine. The issue is that once logged out, it redirects to SOMEURL when I click on…

VIEW QUESTION

How to enable browser cache on nginx? – Plesk

I tried to analyze web speed with PageSpeed Insights and Google told me that I need to enable cache. So I added to my .htaccess: <IfModule mod_expires.c> <FilesMatch ".(ico|pdf|flv|jpg|jpeg|png|gif|svg|webp|js|css|swf|gz|json)$"> ExpiresActive On ExpiresDefault A604800 </FilesMatch> </IfModule> <IfModule mod_headers.c> <FilesMatch ".(ico|pdf|flv|jpg|jpeg|png|gif|svg|webp|js|css|swf|gz|json)$"> Header…

VIEW QUESTION
Back To Top
Search