WordPress Permalink shows blankpage

ARUN Post in WORDPRESS
0

Solution :

Open    wp-admin/includes/misc.php  and change the line in RED as indicated below

function got_mod_rewrite() { 
//$got_rewrite = apache_mod_loaded('mod_rewrite', true); //old line with false negative; 
$got_rewrite = true;//force the response to true as we know mod_rewite is installed;
 return apply_filters('got_rewrite', $got_rewrite); }
« Prev: :Next »

Leave a Reply

You must be logged in to post a comment.