@tony-yin
2017-08-10T02:38:30.000000Z
字数 325
阅读 893
php
php -S 0.0.0.0:1024
1024 端口是 UNIX 系统动态端口的开始,是我们不需要 root 权限就可以随意监听的数值最小的端口
Options +FollowSymLinksRewriteEngine OnRewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_FILENAME} !-fRewriteRule ^ index.php [L]
location / {index index.php index.html index.htm;try_files $uri $uri/ /index.php?$query_string;}
