ThinkPHP Apache和Nginx伪静态规则整理

最近有接触到ThinkPHP框架,对于这个框架之前有听说应该还是相当有知名度的,但是自己也用不上就没有去了解。最近技术有开发的项目用的是ThinkPHP,我在部署的时候告诉我用Apache,但是我一般公司部署的WEB环境都是Nginx,然后搜索文档看到还是有Apache和Nginx伪静态规则支持的。

这里把Apache和Nginx伪静态整理出来下次用的时候用Nginx系统,这次就根据他说的先用Apache。文章源自:https://www.tuzier.com/生活小百科-https://www.tuzier.com/life/197.html

第一、Apache文章源自:https://www.tuzier.com/生活小百科-https://www.tuzier.com/life/197.html

<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>文章源自:https://www.tuzier.com/生活小百科-https://www.tuzier.com/life/197.html

第二、Nginx文章源自:https://www.tuzier.com/生活小百科-https://www.tuzier.com/life/197.html

location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}文章源自:https://www.tuzier.com/生活小百科-https://www.tuzier.com/life/197.html

下次需要用的时候直接复制去使用。文章源自:https://www.tuzier.com/生活小百科-https://www.tuzier.com/life/197.html

 文章源自:https://www.tuzier.com/生活小百科-https://www.tuzier.com/life/197.html 文章源自:https://www.tuzier.com/生活小百科-https://www.tuzier.com/life/197.html

 
  • 本站文章来自网友投稿、本站原创以及互联网统一发布,部分内容、文字的真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考。转载请务必保留本文链接:https://www.tuzier.com/life/197.html