0

RewriteRule ^mp3/(\d+)/(.*)/$ download.php?id=$1 [L,NC]

is the specific rewrite rule I am trying to get working....it was working fine on my old server but now I am on a server with Apache 1.3.4.1 if that has anything to do with it.

Zypher
  • 37,405
  • 5
  • 53
  • 95
Ian
  • 1
  • 1

1 Answers1

3

\d is not supported in Apache 1.3.x. Use [0-9] instead. (\d will work in Apache 2.)

hashchange
  • 276
  • 2
  • 6