show/hide this revision's text 4 added 2 characters in body; deleted 1 characters in body

there is a nice test utility for windows here

http://www.helicontech.com/download-isapi%5Frewrite.htm

try changing your code to:

^/test/([^/]+)$ /index.php?page=$1 [L]

or without slashes

^test[^a-z]+([a-z]*)$ /index.php?page=$1 [L]
show/hide this revision's text 3 deleted 34 characters in body

there is a nice test utility for windows here

http://www.helicontech.com/download-isapi%5Frewrite.htm

try changing your code to:

^/test/([^/]+)$ /index.php?page=$1 [L]

or

^/test/(.+)/?$ /index.php?page=$1 [L]

or

^\/test\/(.+)\/?$ without slashes

test[^a-z]+([a-z]*)$ /index.php?page=$1 [L]
show/hide this revision's text 2 added 102 characters in body

there is a nice test utility for windows here

http://www.helicontech.com/download-isapi%5Frewrite.htm

try changing your code to:

^/test/([^/.]+)$ /test/([^/]+)$ /index.php?page=$1 [L]

or

^/test/(.+)/?$ /index.php?page=$1 [L]

or

^\/test\/(.+)\/?$ /index.php?page=$1 [L]
show/hide this revision's text 1