mod_rewrite does url redirection instead of filesystem lookup
HelloI have a problem with mod_rewrite.
My users have a folder statistics and public_html in their home directory and I want to give them access via web to the statistics.
I have the following RewriteRule that should check if the user is login to my control panel. The request looks like this:
http://www.domain.com/stats/usr1500/<PHP_SESSID>/index.html
Where usr1500 is the home directory in /usr/home/.
The redirection works but it makes a url rewrite instead to deliver the file on the hdd directly. I see in my error_log file not found /usr/home/usr1500/public_html/usr/home/usr1500/statistics/index.html.
Code:
<Location /stats> RewriteEngine on RewriteCond %{REQUEST_URI} ^/stats/([^/]+)/([^/]+)/([^/]+) RewriteCond /tmp/sess_%2 -f RewriteRule ^/(.*)$ /usr/home/%1/statistics/%3 </Location>
- dom