My .htaccess RewriteRule is "not working"

356 Views Asked by At
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

2

There are 2 best solutions below

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

".*" 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]