wh5231

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2014年1月19日

摘要: 打开 nginx 的配置文件 nginx.conf 文件,修改如下:01 # 我使用的是虚拟主机配置02 server {03 listen 80;04 server_name dev.example.com;05 06 rewrite_log on;07 08 root /www/web/htdocs/dev.example.com;09 index index.php index.html index.htm;10 11 location / {12 index index.php index.html index.htm;13 }14 15 location ~... 阅读全文
posted @ 2014-01-19 21:18 wh5231 阅读(258) 评论(0) 推荐(0)