Quote:
Originally Posted by cam_girls
I read 10 sites from Google, and got this far
RedirectMatch 301 (.*)\.html$ http://www.example.com$1.php
not sure what the $ is after html and the 1 is for.
|
$ means : ending with html , in this case any filename ending with .html
$1 = (.*) you can substitute anything between the parentheses with $1 (variable).