Forum Moderators: phranque
RewriteEngine On
RewriteRule ^test\.html$ test.php [L] <Directory />
Options FollowSymLinks
AllowOverride All
</Directory> RedirectMatch ^/$ http://example.com/e/www/
<VirtualHost *:80>
ServerName mydomain.com
ServerAdmin webmaster@mydomain.com
DocumentRoot /var/www/mydomain.com/docroot/
ServerSignature Off
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
RewriteEngine On
RewriteRule ^oldstuff\.html$ newstuff.html [R]
</VirtualHost>
RewriteRule ^/oldstuff\.html$ http://www.example.com/newstuff.html [R=301,L]