I'm trying to recreate dynamic urls into static using mod-rewrite and .htaccess
the code I have tried to use is
Options +FollowSymLinks
RewriteEngine on
RewriteBase /web/
RewriteRule ^details([0-9]+)\.htm$ /details.php?id=$1 [L]
but it doesn't work
the urls should go from
to something like
the code I have tried to use is
Options +FollowSymLinks
RewriteEngine on
RewriteBase /web/
RewriteRule ^details([0-9]+)\.htm$ /details.php?id=$1 [L]
but it doesn't work
the urls should go from
to something like