Hello,
I have application in subfolder http://example.com/some/other/sub/folder/
.
And .htaccess file:
RewriteEngine on
RewriteBase /some/other/sub/folder
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?p=$1 [QSA,L]
Template files contain absolute URL to the images, js and css files: /images/header.png
, /js/common.js
etc.
My problem is that static files with absolute paths is not accessible.
Thx.