I am retry to rewrite index.php to home and details.php?id=$ to product/$
Options -MultiViews
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^.]+)$ $1.php [NC,L]
RewriteRule ^product/([0-9a-zA-Z-_]+) details?id=$1
RewriteRule ^special/([0-9a-zA-Z-_]+) details2?id=$1
Can someone please assists am not sure what i did wrong thanks