Hi I have a problem.
I want to get all requests to redirect to index file in main directory and I\'ve achieved this but there are problems with relative paths.
When I pu
This is a path resolution issue: When using the relative path ./css on the base path /something it is resolved to /css while on /something/somethingelse it is resolved to /something/css.
This can’t (or rather shouldn’t) be fixed with mod_rewrite. Use absolute paths instead of relative paths, so /css instead of ./css.