1

I'm noob when it comes to .htaccess tricks.

However, I have a page http://example.com/register and when a user enters this URL, I want this page to redirect directly to Homepage or let's say any other page.

I've inserted following code inside .htaccess, but it's not working.

 #Redirect to Homepage   
Redirect 301 /register http://www.example.com/

Anything I'm missing here?

halfer
  • 19,824
  • 17
  • 99
  • 186
Prabin Parajuli
  • 551
  • 2
  • 12
  • 37

1 Answers1

0

Check your apache server setting.

Is AllowOverride setted on your root directory.

For example:

<Directory /var/www/> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory>

See How to Set AllowOverride all

Community
  • 1
  • 1
waynelpu
  • 425
  • 3
  • 9