Kallywag,
So I’ve discovered that you and I are both idiots. For a redirect, the second thing apparently needs to be a full URL.
Like:
Redirect permanent /one.html http://site.com/two.html
Chradil,
I don’t think the problem is my htaccess format. Here is my file:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Redirect /one.html /two.html
—
If the redirect isn’t there, everything works (except obviously one.html doesn’t redirect anywhere) but adding that line results in Error 500 when I try to access the site at all.