Greg
Greg

Reputation: 3063

What is wrong with my .htaccess? 500 Internal server error

would you know what the issue is?

This works:

SetEnv PHP_VER 5_3
SetEnv REGISTER_GLOBALS 0
ErrorDocument 404 /index.html
ErrorDocument 403 http://www.dsfds.lu

This doesn't work and return a "500 Internal server error":

SetEnv PHP_VER 5_3
SetEnv REGISTER_GLOBALS 0
ErrorDocument 404 /index.html
ErrorDocument 403 http://www.dsfds.lu
Redirect 301 /biographie-dfd-fdd/ biographie.html

Upvotes: 1

Views: 210

Answers (1)

Cjmarkham
Cjmarkham

Reputation: 9681

You need to use the full URL as the second argument

Redirect 301 /biographie-dfd-fdd/ http://website.com/biographie.html

Upvotes: 2

Related Questions