Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Using Apaches mod _ rewrite to access files in a different directory

I like clean URLs. Nothing more than :

http : //example.com/page - name

This is part of how I set that up when I was using apache via mod _ rewrite

RewriteEngine On
RewriteCond %{DOCUMENT_ROOT}/pages/$1.html  -f
RewriteRule ^(.*)$ %{DOCUMENT_ROOT}/pages/$1.html [L]

TODO : Add more details on exactly what this is doing.