yii laravel ci 各种开源框架伪静态配置
Nginx 添加以下配置内容
location / {
index index.html index.htm index.php;
#autoindex on;
try_files $uri $uri/ /index.php?$args;
}
Apache 配置
在 .htaccess 写入以下内容
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
发表评论