企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## :-: **使用宝塔** ### **使用宝塔的话在站点添加好后修改伪静态配置如下即可** ![](https://box.kancloud.cn/2fb64d2ba15a7aaad6c9f45ff8aaed0a_642x614.png) ***** ## :-: **不使用宝塔** ### **如果是自己搭建环境,参考下面配置,将圈起来的部分修改为自己的路径即可** ![](https://box.kancloud.cn/7479c5c120eada92933e21cb3c2a0777_961x521.png) ``` server { listen 80; server_name www.ithink.com ithink.com; index index.php index.html index.htm; charset utf-8; client_max_body_size 200m; root /localhost/test/github/git.oschina.net/iThink/public/; error_log /usr/local/var/logs/nginx/ithink.com.error.log; location / { #如果请求既不是一个文件,也不是一个目录,则执行一下重写规则 if (!-e $request_filename) { #地址作为将参数rewrite到index.php上。 rewrite ^/(.*)$ /index.php?s=$1; } } location ~ \.php$ { fastcgi_pass 127.0.0.1:9009; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } ```