yii laravel ci 各种开源框架伪静态配置

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]


THE END
喜欢就支持以下吧
点赞 0
评论 抢沙发
友好交流,请勿发纯表情,请勿灌水,会被封号喔
提交