I have a dilemma in the application layout where I'm referencing assets (js, css, and img) in the public/assets/... directory. For example:
<link href='assets/images/meta_icons/apple-touch-icon-144x144.png' rel='apple-touch-icon-precomposed' sizes='144x144'>
<script src="assets/javascripts/plugins/modernizr/modernizr.min.js" type="text/javascript"></script>
However, when the page localhost/quotes/show is loaded, it attempts to find the assets at quotes/assets/... instead of just assets/... Interestingly, the assets load perfectly fine when the page localhost/quotes is accessed, as it correctly checks the assets/... directory rather than quotes/assets/...
Does anyone know how to resolve this issue? Appreciate any solutions.