My php sign-in controller stores the calling REQUEST_URI into a session variable and then validates the users credentials. Once validated the sign-in is marked and the script then does a header('Location: /'); to re-direct back to my MVC entry point. My entry scheduler realises that a session variable has been created and uses it to execute the targeted controller.
On Chrome (Apple Mac), this all works fine. But within Safari, if I go to my home page to sign-in (/index.php), and sign-in. The REQUEST_URI contains "/assets/styles/login.css.map". The string "login.css" does not appear to exist anywhere within my framework, or at least my Mac can't find it. Any ideas, got me stumped?