Page is a not externally linkable
phranque - 3:34 am on Nov 4, 2012 (gmt 0)
whenever you are using permalinks there is a standard wordpress mod_rewrite section added to .htaccess that internally rewrites all requested non-file/non-directory URLs to index.php.
Using Permalinks « WordPress Codex:
http://codex.wordpress.org/Using_Permalinks [codex.wordpress.org]
http://codex.wordpress.org/Using_Permalinks#Creating_and_editing_.28.htaccess.29
Creating and editing (.htaccess)
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress