'How to pass multiple parameter in htaccess
I have created dynamic parameters, I passed two(ids and id) parameter in URL but do not know pass parameter in below htacces file could you solve this issue please
my htacces file:
Options -MultiViews
RewriteEngine On
RewriteCond %{THE_REQUEST} \s/store\.html\?ids=([0-9]+)&id=([0-9]+)\s [NC]
RewriteRule ^ /store/%1? [R=301,L]
RewriteRule ^store/([0-9]+)$ /store.html?ids=$1&id=$2 [L]
my URL is http://localhost/store.html?ids=kebab-bistro&id=196
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
