普莱斯克vhost.conf文件用于将httpdocs符号链接到另一个域

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了普莱斯克vhost.conf文件用于将httpdocs符号链接到另一个域相关的知识,希望对你有一定的参考价值。

Use this when you want to serve a domain from the document root of another domain on the same box. Along with this config, you will want to replace the httpdocs directory with a symlink to the other domains doc root. (Don't forget to change ownership of the symlink to match the owner of the destination doc root.)
  1. <Directory /home/httpd/vhosts/example.com/httpdocs>
  2. Options -Includes -ExecCGI -FollowSymLinks +Indexes
  3. <IfModule sapi_apache2.c>
  4. php_admin_flag engine on
  5. php_admin_flag safe_mode off
  6. php_admin_value open_basedir none
  7. </IfModule>
  8. <IfModule mod_php5.c>
  9. php_admin_flag engine on
  10. php_admin_flag safe_mode off
  11. php_admin_value open_basedir none
  12. </IfModule>
  13. </Directory>

以上是关于普莱斯克vhost.conf文件用于将httpdocs符号链接到另一个域的主要内容,如果未能解决你的问题,请参考以下文章

用于 ? (特殊字符)在 httpd-vhost.conf 的服务器名中

如何配置 apache-vhost.conf 文件以从 Java 获取会话值

Apache2 vHost conf - 重定向到不同的服务器

version: nginx/1.16.1 vhost.conf 原始文件格式

apache虚拟主机防止php网页木马vhost.conf文件配置

Plesk:通过 vhost_ssl.conf 覆盖 httpd.conf SSLCertificateFile?