Skip to content

Instantly share code, notes, and snippets.

@jxnblk
Last active March 12, 2023 12:25
Show Gist options
  • Star 21 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save jxnblk/6137537 to your computer and use it in GitHub Desktop.
Save jxnblk/6137537 to your computer and use it in GitHub Desktop.
.htaccess for using AngularJS's in HTML5 mode on Media Temple
Options +FollowSymLinks
<ifModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !index
RewriteRule (.*) index.html [L]
</ifModule>
@PH-F
Copy link

PH-F commented Jul 7, 2016

This works fine, but i get errors in the console
Failed to parse SourceMap: URL/vendor/reflect-metadata/Reflect.js.map
Failed to parse SourceMap: URL/vendor/@angular/core/src/metadata.js.map
etc.

How can i exclude them

@vistajess
Copy link

Hello , I have same problem as well.

I have route app/dashboard redirect from my login page(index).
When the user is logged in it redirects to app/dashboard, the route perfectly shows but
when I refresh the page it returns 404 `The requested URL /dashboard was not found on this server.``

Any insights pls?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment