Forum Moderators: phranque
###
RewriteEngine on
#ErrorDocument 404 /
RewriteRule ^keyword/([0-9]+)/$ process.php?var=$1 [L]
#Content pages
RewriteCond %{REQUEST_FILENAME}!-f
RewriteCond %{REQUEST_FILENAME}!-d
RewriteRule ^([^/]+)/?$ index.php?url=$1
###
I'm about:
RewriteRule ^keyword/([0-9]+)/$ process.php?var=$1 [L]
when script name if different than pattern (keyword - process.php) - this rule works fine, but when I use the same names:
RewriteRule ^process/([0-9]+)/$ process.php?var=$1 [L]
- it doesn't (var is not set) :((
can anyone tell me why?