Apache – mod_rewrite parameter as directory and maintain relative url
I have the following php file: http://example.com/details.php?item=asdf However, I would like the url to be more concise: http://example.com/item/asdf/details I tried using the the .htaccess file like so: RewriteEngine on RewriteRule ^item/(w+)/details$ details.php?item=$1 And the url rewrite works. However, when I…