Eegads! Thanks Zenpih. I've been trying different solutions and yours was the one that worked. Just to be clear for everybody else coming into this thread the steps you should take are:
- access .htaccess file from your root directory and add the rewrite code
- go into wp-admin/includes/misc.php and replace
function got_mod_rewritewith Zeniph's code
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); }
Thanks again. This is a godsend!