Reputation: 488
RewriteRule ^word-(.*)/(.*)/([a-z][a-z])/([0-9]+)?/$ /keywordbycountry.php?word=yes&keyword=$2&cc=$3&page=$4 [L]
the $2 = is the keyword (anything) the $3 is the country code (only 2 lowercase letters) the $3 is the page (only numbers)
but for some reason it is not working
Upvotes: 1
Views: 348
Reputation: 488
RewriteRule ^word-(.*)/([a-z]+)/([a-z][a-z])/([0-9]+)?/$ /keywordbycountry.php?word=yes&keyword=$2&cc=$3&page=$4 [L]
Upvotes: 1
Reputation: 7219
".*" might be the problem, it will match anything and therefore also '/' up until the strings end is reached.
use [^/]+ instead:
RewriteRule ^word-([^/]+)/([^/]+)/([a-z][a-z])/([0-9]+)?/$ /keywordbycountry.php?word=yes&keyword=$2&cc=$3&page=$4 [L]
Upvotes: 1