New answers tagged internal-server-error
0
The problem ended up being that the wp_rewrite was not flushed on the push to the Heroku server. So, what I ended up doing was creating a file in the root directory with the following code:
<?php
global $wp_rewrite;
$wp_rewrite->flush_rules();
?>
Then I added a deploy hook for heroku via command line
heroku addons:add deployhooks:http ...
Top 50 recent answers are included