Letsencrypt和CakePHP应用程序的Htaccess重写文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Letsencrypt和CakePHP应用程序的Htaccess重写文件相关的知识,希望对你有一定的参考价值。
This .htaccess actually forces all traffic to https, and allows cakephp app to work properly, as well as letsencrypt to go thru
<IfModule mod_rewrite.c> RewriteEngine on RewriteRule ^.well-known/ - [L,NC] RewriteCond %{HTTP_HOST} ^www.(.*)$ [NC] RewriteRule ^(.*)$ https://%1/$1 [R=301,L] RewriteCond %{HTTPS} !=on RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L] RewriteRule ^$ app/webroot/ [L] RewriteRule (.*) app/webroot/$1 [L] </IfModule>
以上是关于Letsencrypt和CakePHP应用程序的Htaccess重写文件的主要内容,如果未能解决你的问题,请参考以下文章
通过nginx 1.10.3和LetsEncrypt保护WebSocket连接
LetsEncrypt : LetsEncrypt 的中间证书
如何在 Heroku Node Express 应用程序中使用 LetsEncrypt SSL 证书?