我正在尝试将我public
的文件夹与其中的index.php
文件符号链接到httpdocs
也放置公用文件夹的文件夹。
当我尝试对公用文件夹进行符号链接时,我收到一条错误消息,提醒我public
文件夹名称已被占用。我也尝试过对index.php
文件本身进行符号链接,该文件本身有效,但破坏了网站的功能。
这是我在对public
文件夹进行符号链接时使用的命令。
ln -s /var/www/vhosts/mysite.co.uk/httpdocs/public /var/www/vhosts/mysite.co.uk/httpdocs
这是我在符号链接index.php
文件时使用的命令。
ln -s /var/www/vhosts/mysite.co.uk/httpdocs/public/index.php /var/www/vhosts/mysite.co.uk/httpdocs
tldr:当用户访问我的网站时,我想将index.php
公用文件夹中的文件用作index.php
文件,而不必使用mysite.co.uk/public/index.php
. 该index.php
文件必须保留在public
文件夹中。