欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程资源 > 编程问答 >内容正文

编程问答

lamp/lnmp开启 PATHINFO

发布时间:2024/4/17 编程问答 59 豆豆
生活随笔 收集整理的这篇文章主要介绍了 lamp/lnmp开启 PATHINFO 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

Apache

<IfModule mod_rewrite.c>Options +FollowSymlinks -MultiviewsRewriteEngine OnRewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_FILENAME} !-fRewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] </IfModule> 复制代码

Nginx

server {listen 80;server_name _;root /data/wwwroot/default;index index.php index.html index.htm;add_header X-Powered-Host $hostname;fastcgi_hide_header X-Powered-By;if (!-e $request_filename) {rewrite ^/(.+?\.php)/?(.*)$ /$1/$2 last;rewrite ^/(.*)$ /index.php/$1 last;}location ~ \.php($|/){fastcgi_index index.php;fastcgi_pass 127.0.0.1:9000;include fastcgi_params;set $real_script_name $fastcgi_script_name;if ($real_script_name ~ "^(.+?\.php)(/.+)$") {set $real_script_name $1;}fastcgi_split_path_info ^(.+?\.php)(/.*)$;fastcgi_param PATH_INFO $fastcgi_path_info;fastcgi_param SCRIPT_NAME $real_script_name;fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;#在vhost中去掉PHP_VALUE open_basedir这一行fastcgi_param PHP_VALUE open_basedir=$document_root:/tmp/:/proc/;# access_log /home/wwwlog/domain_access.log access;# error_log /home/wwwlog/domain_error.log error;}location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {access_log off;error_log off;expires 30d;}location ~ .*\.(js|css)?$ {access_log off;error_log off;expires 12h;} } 复制代码

转载于:https://juejin.im/post/5a7cf555518825365226f09b

总结

以上是生活随笔为你收集整理的lamp/lnmp开启 PATHINFO的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。