I need a URL like this:
http://domain.com/subfolder/file.php?src=quick-brown-fox&m=1&size=320x480 .. changed to:
http://domain.com/subfolder/file/quick-brown-fox/320x480 I updated the htaccess with:
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^/subfolder/([^\.]+)$ $1.php [NC,L] but I'm getting a 404. What am I doing wrong?