i am getting a 500 internal server error with the following:
RewriteCond %{HTTP_HOST} ^data\.mysite\.com$ [NC]
RewriteRule ^(.*)$ data/$1 [L,QSA]
-----------------??? when i replace the RewriteRule line by the following:
RewriteRule ^(.*)$ data/index.php?r=$1 [L,QSA]
it works , but in real case i will not have an index.php in the folder, i will have folders containing images...
Any Idea?? original question here