-
-
Save jxnblk/6137537 to your computer and use it in GitHub Desktop.
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> |
Can you please adapt it to work for html5mode in legacy browsers for deep linking? Works fine in ie10+ but in ie9 when i have a route like domain/route/:id it fails to fallback to hasbang mode domain/#!/route/:id which leads to not loading jsvascript and css. If you can provide a solution i will be much obliged. Ty.
Works great - thanks a billion!
Not working for me. Redirects example.com -> example.com/#/
@mmguide2003 it also happens the same to me, did you find a workaround?
Awesome. Thanks for sharing 😊
@josejulio @mmguide2003 You need to enable the HTML5-Mode:
function($locationProvider) {
$locationProvider.html5Mode(true);
},
Hello,
For simple link it's working fine ex." http://clean-blog.dev/about " but ex. for this link: " http://clean-blog.dev/page/2" only on refresh doesn't work.
Any suggestion?
Same here, refreshing works only for first level of path (/articles
works, /articles/article-slug
not working).
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
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?
When I access a direct link "myapp.com/user-settings" it crashes the browser.