一、phpStudy 创建网站
- 设置访问域名
- 根目录填写项目目录到public目录
- 注意勾选同步hosts
- 确认PHP版本 > 7.1.0
- 重启Nginx服务器
- 可以直接访问
http://tp6.com/index.php/index/test
(index/test是写在index控制器下的test方法)
二、隐藏index.php
如果希望隐藏index.php,直接访问 http://tp6.com/index/test
需要再配置Nginx服务器:
点击刚新建的网站的vhosts.conf
配置文件,添加代码:
if (!-e $request_filename){
rewrite ^/index.php(.*)$ /index.php?s=$1 last;
rewrite ^/(.*)$ /index.php?s=$1 last;
}
完整的文件:
server {
listen 80;
server_name tp6.com;
root "D:/phpstudy_pro/WWW/tp6/public";
location / {
index index.php index.html error/index.html;
if (!-e $request_filename){
rewrite ^/index.php(.*)$ /index.php?s=$1 last;
rewrite ^/(.*)$ /index.php?s=$1 last;
}
error_page 400 /error/400.html;
error_page 403 /error/403.html;
error_page 404 /error/404.html;
error_page 500 /error/500.html;
error_page 501 /error/501.html;
error_page 502 /error/502.html;
error_page 503 /error/503.html;
error_page 504 /error/504.html;
error_page 505 /error/505.html;
error_page 506 /error/506.html;
error_page 507 /error/507.html;
error_page 509 /error/509.html;
error_page 510 /error/510.html;
include D:/phpstudy_pro/WWW/tp6/public/nginx.htaccess;
autoindex off;
}
location ~ \.php(.*)$ {
fastcgi_pass 127.0.0.1:9004;
fastcgi_index index.php;
fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
include fastcgi_params;
}
}
如果不是使用集成环境,可以将上面的代码复制到Nginx相关配置文件中。
配置完成,重启Nginx服务器。
现在下面两种方式都可以访问了:
http://tp6.com/index/test
http://tp6.com/index.php/index/test
转载:https://blog.csdn.net/zy1281539626/article/details/110294256
查看评论