Can someone explain what this .htaccess does?

tb303

Supreme Member
Joined
Dec 18, 2011
Messages
1,238
Reaction score
909
Dear lounge, im posting this here for some quick views and hopefully a quick answer.

what does this .htaccess do? Its way over my head on what i know about htaccess stuff

Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ /private.php [L]
</IfModule>
 
"If the requested resource is neither a file nor a directory, redirect to /private.php"
 
ah right ok. thank you.
 
Back
Top