Page is a not externally linkable
incrediBILL - 7:12 pm on Sep 30, 2012 (gmt 0)
## internal rewrite
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
The problem with this code which WordPress uses is it's completely dain bramaged and processes ALL files (images, etc.) using the !-d and !-f commands which are inefficient.
See this thread for an optimal version that speeds up the site:
[webmasterworld.com...]