Reputation: 2110
I'm using WordPress and I have created a few folders for uploading files through FTP.
I would like to redirect folder links to my set homepage, for example: this link shows the Apache Server at Port 80 which I need to redirect it to the homepage.
Thank you
Upvotes: 0
Views: 59
Reputation: 5781
Create an index page in the root of the folder with
<?PHP
header('location:location/to/homepage');
?>
This will be the easiest thing to do.
You could also look into using some .htaccess
files to restrict access to a page and send them to a 403 error page or send it to the homepage.
Upvotes: 4