I have a problem using htaccess url rewrite on a symbolic folder. Below is the line which i am using in htaccess file for url rewriting.
RewriteRule ^global/css/([0-9]+)/([a-z-_]+)\.css$ global/less/index.php?site_id=$1&file=$2 [L]
"global" is my symbolic directory
This rule works fine when I use it on other then symbolic directory. But it does not work on symbolic directory.
it is working on my live server but not working on my local test server. what other configuration is required to make it work.
Any solution?