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