# ionic **Repository Path**: MMtao/ionic ## Basic Information - **Project Name**: ionic - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-03-03 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 基于AngularJS模仿的"豆瓣一刻"APP ##### 后台数据来自"豆瓣一刻"后台数据接口 ### 首页 ![image index](https://github.com/AlertZq/YiKe/blob/master/img-folder/index.jpg) ### 菜单栏 ![image aside](https://github.com/AlertZq/YiKe/blob/master/img-folder/aside.jpg) ### 作者 ![image author](https://github.com/AlertZq/YiKe/blob/master/img-folder/author.jpg) ### 栏目分类 ![image category](https://github.com/AlertZq/YiKe/blob/master/img-folder/category.jpg) ### 设置 ![image setting](https://github.com/AlertZq/YiKe/blob/master/img-folder/setting.jpg) ## Apache环境搭建 ```html DocumentRoot "e:/Yike/" ``` ## 配置虚拟主机 ### 步骤一:httpd.conf文件498行 ``` # Virtual hosts Include conf/extra/httpd-vhosts.conf ``` ### 步骤二:extra/httpd-vhost.conf文件 ``` DocumentRoot "e:/Yike" ServerName yike.com ServerAlias www.yike.com ``` ### 步骤三:配置hosts文件(C:\Windows\System32\drivers\etc\hosts) ``` 127.0.0.1 yike.com 127.0.0.1 www.yike.com ``` ### 步骤四:重启Apache服务器