-1

I'm trying to redirect http://example.com/forum/index.php to http://example.com/forum/ and it will not work. Here's the code I'm using in my .htaccess. What am I doing wrong?

Redirect forum/index.php http://example.com/forum

I've also tried without the forum/ part too.

1 Answers1

1

Try adding a / before forum:

Redirect /forum/index.php http://example.com/forum/
Chris Montanaro
  • 808
  • 1
  • 7
  • 8