0

Will this redirect work [a-z]* to example.com

ie., I want to redirect anything to example.com

Thanks Jean

X10nD
  • 21,638
  • 45
  • 111
  • 152

1 Answers1

1

.* A period matches any character except a newline.

But what you probably want is:

Redirect permanent / http://www.example.com/

OmnipotentEntity
  • 16,531
  • 6
  • 62
  • 96