通知短信+运营短信,5秒速达,支持群发助手一键发送🚀高效触达和通知客户 广告
这里假设你有Nginx的所有配置权限。 > 注意:Lying并不支持子目录访问,所以请把入口文件夹所在的目录设置为DOCUMENT_ROOT,默认为`web`目录。 Nginx配置文件如下: ~~~html server { listen 80; server_name localhost; root html/lying/web; index index.php; location / { try_files $uri $uri/ /index.php/$args; } location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } ~~~ 如果你不能配置nginx,那么……暂时我也没办法啊T T。