After two days of working on nginx environment problems, I found that many people's posts on the Internet are either copied and pasted. Or there is no post, and you write something like "Haha, I solved it myself". I despise these compatriots who posted. You say you asked a question, but you don't give an explanation when the problem is solved. While you are still on the first few pages of the search, have you ever thought about the feelings of the people who need answers? I looked at the answer with joy and found that there was no knot. Okay, without further ado, let’s get to the point.
My method does not require changing the URL_Model to rewrite/compatible:
About line 43, modify it according to the following comparison with your own code. Please pay attention to the detailed symbols:
location / {
root C:/Zend/workspaces; #//This is the root directory of your own project.
index index.html index.htm index.php; 🎜 > break;
}
}
}
In the php configuration, change location ~ .php$ to location ~ .php. Again, pay attention to details. The
$
symbols are removed here. I did the same at the beginning. For this reason it has never been resolved. location ~ .php { root C:/Zend/workspaces; fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME C:/wnmp/php$fastcgi_script_name ;
include fastcgi_params;
set $path_info "";
set $real_script_name $fastcgi_script_name;
if ($fastcgi_script_name ~ " ^(. ?.php)(/. )$") {
set $real_script_name $1;
set $path_info $2;
}
fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
fastcgi_param SCRIPT_NAME $real_script_name;
fastcgi_param PATH_INFO $path_info;
}
If it is still not resolved, add the configuration define(‘_PHP_FILE_’,$_SERVER['SCRIPT_NAME']);
to the ThinkPHP entry file index.php
During this period, you may encounter problems with 500,404, but remember, just be careful. As long as you change it according to what I did, there will basically be no problem. If you still have questions, please leave a message for consultation.
Solution source reference: http://www.codesth.com/No need to rewrite for compatibility, solve nginx does not support thinkphp-pathinfo mode/
http://www.bkjia.com/PHPjc/1024648.html
www.bkjia.com