Moved existing codeigniter app to a new server to perform some code updates. Everything is working correctly except any method that uses POST returns 404.
For example:
function export_xls(){
echo "HERE";
if($this->input->post()){
I'll be able to hit the echo but it will then 404 at
$this->input->post()
I've tried changing base_url in config.php and different things in htaccess to see if that helps but nothing has proven successful.
All other functions where post values are not being called work perfectly.
Live url (where everything works) is http://admin.xxxxxx.com and dev is http://crm-admin.srv-y7z9u.xxxxxxx.com if that provides any insight.