1.通过安装httpd,配置httpd.conf, 一般在/var/www/html根目录下创建html,通过表单上传文件到服务端 ,后端可以用php开发。
参考:https://zhuanlan.zhihu.com/p/59467244
部分代码index.html
<html>
<body>
<form action="upload.php" method="post" enctype="multipart/form-data">
<label for="file">Site:</label> <input type="text" name="site" id="site" />
<label for="file">File:</label> <input type="file" name="file" id="file" />
<br/>
<input type="submit" name="submit" value="Submit" />
</form>
</body>
</html>
php代码
<?php
if (empty($_FI