I want to change the url from
http://localhost/brand/2-BBB.html
to
http://localhost/brand/BBB-2.html
appreciate if you can help me
RewriteEngine On
RewriteBase /
RewriteRule ^brand/([0-9]+)-(.*)\.html$ test.php?id=$1
I want to change the url from
http://localhost/brand/2-BBB.html
to
http://localhost/brand/BBB-2.html
appreciate if you can help me
RewriteEngine On
RewriteBase /
RewriteRule ^brand/([0-9]+)-(.*)\.html$ test.php?id=$1
Assuming you've changed the URLs in your application to the new /BBB-2.html
version, then you just need to change your directive like this:
RewriteRule ^brand/(.+)-([0-9]+)\.html$ test.php?id=$2 [L]
Note the $2
backreference.