lamp/lnmp开启 PATHINFO
生活随笔
收集整理的這篇文章主要介紹了
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的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: autocomplete=off inp
- 下一篇: Java_异常_04_ OutOfMem