
phpstudy
Dove言和
皮卡皮卡~种一棵树最好的时间是十年前,其次是现在,厚积而薄发。
有合作想法欢迎评论区留言或私信联系!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
新手配置Nginx+mysql里的vhost.conf文件
新手配置Nginx+mysql里的vhost.conf文件server {listen 80;server_name localhost;root D:/project/taifeng; #根目录 index index.php index.html index.htm; location / { if (!-e $request_filename) { rew...原创 2018-05-25 11:49:42 · 1296 阅读 · 0 评论 -
phpstudy访问根目录文件phpinfo.php的配置文件
phpstudy访问不了phpinfo.php文件或其他根目录文件, 1、请尝试一下复制下列代码! server { listen 80; server_name localhost; root "D:/phpStudy/WWW"; location / { index index.html index.htm index.php; #autoindex on; } location ~ .p...原创 2018-05-25 11:47:10 · 7298 阅读 · 0 评论 -
nginx phpstudy 怎么配置隐藏index.php?
windows系统 phpstudy集成环境,nginx服务, 安装自己的项目后除了首页可以访问,其他页面都不能访问,每次点击它都会在中间添加一个index.php,我也不知道什么原因, 无意间看见这行代码,在nginx的vhosts.conf文件上按照文档的指导加了一行 try_files $uri $uri/ /index.php?$query_string; server { ...原创 2018-06-21 09:48:58 · 6124 阅读 · 5 评论