我有一个具有此配置的虚拟服务器,以便将根请求重定向到放置在子文件夹中的特定index.php:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
Options -Indexes -FollowSymLinks
RewriteEngine on
RewriteRule ^$ /applications/container/index.php [NC,L]
但是当我请求http://192.168.0.2时,我得到的是:
任何提示?