i have this htaccess code for converting dynamic url to static url
RewriteRule ^dogs/([^/.]+)$ dogs/index.php?county=$1 [L]
it works ok, when i test it using http://example.com/dogs/Avon
but I wanted to add another parameter ie http://example.com/dogs/Avon/2
I tried this but it doesnt work.
RewriteRule ^dogs/([^/.]+)/([^/.]+)$ dogs/index.php?county=$1&page=$2 [L]
Need some help.
Thanks
Try to use:
I think that is for the type number.