-
-
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> |
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?
@josejulio @mmguide2003 You need to enable the HTML5-Mode:
function($locationProvider) {
$locationProvider.html5Mode(true);
},