thinkphp+nginx伪静态设置
thinkphp+nginx伪静态设置 location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; } }
thinkphp+nginx伪静态设置 location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; } }
python2 下 设置命令行下颜色输出: # coding=utf-8 import ctypes, sys STD_INPUT_HANDLE = -10 STD_OUTPUT_HANDLE = -11 STD_ERROR_HANDLE ...