更改基本目录
Change base directory
我想将我网站的主目录更改为网站内的子目录之一,例如
http://name_of_site/first_directory/second_directory/index.php
将被重写为
http://name_of_site/index.php
基本上您需要的是分别更改 DocumentRoot
(Apache) 或 root
(Nginx)
DocumentRoot /path/to/first_directory/second_directory;
root /path/to/first_directory/second_directory;
此外,还有很多相似的问题
- https://serverfault.com/questions/423624/how-to-change-the-nginx-default-folder
- How do I change the root directory of an apache server?
我想将我网站的主目录更改为网站内的子目录之一,例如
http://name_of_site/first_directory/second_directory/index.php
将被重写为
http://name_of_site/index.php
基本上您需要的是分别更改 DocumentRoot
(Apache) 或 root
(Nginx)
DocumentRoot /path/to/first_directory/second_directory;
root /path/to/first_directory/second_directory;
此外,还有很多相似的问题
- https://serverfault.com/questions/423624/how-to-change-the-nginx-default-folder
- How do I change the root directory of an apache server?