我想知道是否可以在内置两个vhost的apache网站配置文件?
更清楚:
现在,如果我像这样访问我的网站:XX.XX.XXX.XX我到达我的wordpress文件夹。 现在,我想访问另一个文件夹,如下所示:XX.XX.XXX.XX / interface
是否可以在同一个conf文件中执行此操作?
实际上是我的:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/wordpress/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/wordpress/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Require all granted
</Directory>
ErrorLog /var/log/apache2/error.log
CustomLog /var/log/apache2/access.log combined
</VirtualHost>
提前致谢