Apache 服务器上的位置别名

Apache 服务器上的位置别名

我在 NginX 上有一个配置,将文件路径设置为如下文件:

location = /upload.php {
    alias /full/path/to/your/magentoproject/http/upload.php;
}

我如何在 Apache 服务器上执行相同操作?

答案1

在你的 apache 虚拟主机配置中添加以下行

alias "/upload.php" "/full/path/to/your/magentoproject/http/upload.php"

并重新启动服务。

相关内容