Reputation: 4962
How can I add parameter to this url:
for ex:
and it will redirect to the same location, only with additional parameter (num=100)?
Upvotes: 2
Views: 1517
Reputation: 1698
Like this
RewriteRule ^([0-9]+)/$ index.php?num=$1 [L,QSA]
Upvotes: 0
Reputation: 785146
Place this rule in your DOCUMENT_ROOT/.htaccess
file:
RewriteEngine On
RewriteCond %{QUERY_STRING} (^|&)p=10455(&|$) [NC]
RewriteRule ^$ /100/ [L]
Upvotes: 1