I\'m developing a website using PHP. My .htaccess has this rewrite rule:
RewriteEngine On RewriteRule ^book/([^/]*)\\.html$ book.php?title=$1 [L]
Specify [QSA] (Query string append) so you may pass a query string after your url.
[QSA]
RewriteEngine On RewriteRule ^book/([^/]*)\.html$ book.php?title=$1 [QSA,L]
PS: Why are you using * here? Wouldn't + suit better?
*
+