Voting

: min(three, one)?
(Example: nine)

The Note You're Voting On

php at voodoolabs dot net
18 years ago
This is probably a better solution than below. The first line makes sure the file doesn't exist then the second line directs all requests to a script. No need to output a 200 header with this method either.

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

<< Back to user notes page

To Top