3

I want to change the home directory of my website to one of the child directories within the site so for example

http://name_of_site/first_directory/second_directory/index.php

would be rewritten to

http://name_of_site/index.php
sitilge
  • 3,687
  • 4
  • 30
  • 56
user2692997
  • 2,001
  • 2
  • 14
  • 20

1 Answers1

0

Basically what you need is to change your DocumentRoot (Apache) or root (Nginx) respectively

DocumentRoot /path/to/first_directory/second_directory;
root /path/to/first_directory/second_directory;

Also, there are a lot alike question out there

Community
  • 1
  • 1
sitilge
  • 3,687
  • 4
  • 30
  • 56