Php – .htaccess map to /books or /books/ or /books/<url_slug>
I am trying to map.htaccess to /books or /books/ or /books/<url_slug>: Options All -Indexes RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^([^/]+)/?$ $1 [R=301,L] # Map /books/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^books$ book.php [NC,L,QSA] Result: book.php:…