答案1
找到了一些更好的文档版本标签我代码具有更好的文档。这些是使 Apache 服务器正确运行所需的选项的完整列表(修改/etc/apache2/apache2.conf
)
<Directory "/var/www/LabelMeAnnotationTool">
Options Indexes FollowSymLinks MultiViews Includes ExecCGI
AddHandler cgi-script .cgi
AllowOverride all
Require all granted
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
DirectoryIndex index.shtml
</Directory>
答案2
cd /etc/apache2/sites-available/
nano 000-default.conf
搜索对于DocumentRoot /var/www/html
(ctrl+w 输入 /var/www/html)
代替 /var/www/html
和/home/labelme
将 labelme 移动到 /home/ 目录
节省文件 000-default.conf(ctrl+x 和 y > 回车)
编辑 /etc/apache2/apache2.conf
文件
在后面添加以下几行:
<Directory /home/labelme/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
重新启动 apache2 网络服务器:
service apache2 restart
并在浏览器中输入以下 URL
http://127.0.0.1/或者http://本地主机/
或者