Question

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

Was it helpful?

Solution 2

RewriteRule ^word-(.*)/([a-z]+)/([a-z][a-z])/([0-9]+)?/$ /keywordbycountry.php?word=yes&keyword=$2&cc=$3&page=$4 [L]

OTHER TIPS

".*" 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]
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top