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?
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