博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
配置 放上传文件的目录 apache(httpd)
阅读量:4961 次
发布时间:2019-06-12

本文共 735 字,大约阅读时间需要 2 分钟。

1. 确认服务器 开放8088端口

https://www.apachefriends.org/download.html XAMPP for Windows,安装
2. 修改apache主配置文件
e:/opt/xampp/apache/conf/httpd.conf
默认有Listen 80这一行,找到这里在下一行添加Listen 8088

3. 创建目录 E:\upload, mkdir E:\upload

4. 修改apache vhost 配置文件 e:/opt/xampp/apache/conf/extra/httpd-vhosts.conf

添加以下配置

ServerAdmin Administrator@www.mediamix.cn DocumentRoot "E:/upload" ServerName www.mediamix.cn ServerAlias www.mediamix.cn ErrorLog "logs/mediamix.cn-error.log" CustomLog "logs/mediamix.cn.log" common
Options Indexes FollowSymLinks Includes ExecCGI AllowOverride All Require all granted

  

apache, httpd, vhost

转载于:https://www.cnblogs.com/mingzhanghui/p/9303681.html

你可能感兴趣的文章
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
iOS 加载图片选择imageNamed 方法还是 imageWithContentsOfFile?
查看>>
toad for oracle中文显示乱码
查看>>
SQL中Group By的使用
查看>>
错误org/aopalliance/intercept/MethodInterceptor解决方法
查看>>
Pylint在项目中的使用
查看>>
使用nginx做反向代理和负载均衡效果图
查看>>
access remote libvirtd
查看>>
(4) Orchard 开发之 Page 的信息存在哪?
查看>>
ASP.NET中 GridView(网格视图)的使用前台绑定
查看>>
深入了解Oracle ASM(二):ASM File number 1 文件目录
查看>>
Boosting(提升方法)之AdaBoost
查看>>
Binding object to winForm controller through VS2010 Designer(通过VS2010设计器将对象绑定到winForm控件上)...
查看>>
Spring Boot实战笔记(二)-- Spring常用配置(Scope、Spring EL和资源调用)
查看>>
活现被翻转生命
查看>>
POJ 1228
查看>>
SwaggerUI+SpringMVC——构建RestFul API的可视化界面
查看>>
springmvc怎么在启动时自己执行一个线程
查看>>
流操作的规律
查看>>