P粉8324905102023-07-29 00:20:56
Please try using the following in your htaccess file:
RewriteEngine On RewriteRule ^artnr/(\d+)/?$ /?artnr= [L,QSA]
^artnr/
- This part of the pattern matches the beginning of the URL you want to rewrite.
(\d ) - This is a capturing group that matches one or more digits (in your case the product number) and captures it.
/?$ - This matches an optional slash at the end of the URL.
/?artnr=$1 - This is the replacement part of the rewrite. It replaces the matching URL with the required format, including the query string parameter artnr and its value.
So this should give you the desired URL: https://localhost.za/?artnr=10616