每次我尝试访问http://服务器ip/folder1它将我重定向到http://example.com
我想访问文件夹 1,但无法访问,因为它被重定向到http://example.com/folder1
这是我在 /etc/apache2/sites-enabled/000-default-ssl.conf 中的虚拟主机配置
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName example.com
DocumentRoot /var/www/html/exampleSite/
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/folder1/
RewriteCond %{REQUEST_URI} !^/folder2/
</VirtualHost>
谢谢!
答案1
我解决了这个问题。
解决方案:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName ip-of-server
DocumentRoot /var/www/html/
<Directory /var/www/html/emall2>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
问候!