Page is a not externally linkable
phranque - 12:36 pm on Nov 11, 2012 (gmt 0)
it seems like you have this out of order:
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{HTTP_HOST} !^(www\.example\.com)?$
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
RewriteRule ^book/([-a-z0-9_]+)$ /book.php?name=$1 [L]
shouldn't it look like this?:
RewriteCond %{HTTP_HOST} !^(www\.example\.com)?$
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^book/([-a-z0-9_]+)$ /book.php?name=$1 [L]