How do i make it so this:
www.example.com/product
Will point to this file: /product.php
but this:
www.example.com/product/thing.php
Will point to this directory: /product/thing.php
I have these rewrite rules in my .htaccess:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]
It's making this:
www.example.com/product.php
Into this:
www.example.com/product