location共5篇

宝塔环境下的BeDrive Nginx规则

location / { try_files $uri $uri/ /index.php?$query_string; } location = /favicon.ico { access_log off; log_not_found off; } location = /robots.txt { access_log off; log_not_found ...
在路上的头像-THE FREE SKY在路上11月29日 05:50
03390

Xenforo Nginx Apache 靜態化

location ~ \.php$ { try_files $uri =404; include /etc/nginx/fastcgi_params; fastcgi_pass unix:/run/php/php7.0-fpm.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_...
Burn的头像-THE FREE SKYBurn3月18日 18:44
04350

Nginx环境下magento2实行静态化的方法

location / { index index.html index.php; ## Allow a static html file to be shown first try_files $uri $uri/ @handler; expires 30d; } location /var/export/ { ## Allow admins only to...
天空的头像-THE FREE SKY天空7月18日 02:23
06940

Nginx环境下安装Cloudreve实行静态化的方法

对于Nginx服务器,以下是一个可供参考的配置 location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=/$1 last; break; } } 如果你的应用安装在二级目录,Nginx的伪静态方法设...
天空的头像-THE FREE SKY天空7月18日 01:50
08610

利用JavaScript实现强制重定向至HTTPS页面

有时候需要把网页强制切换成HTTPS,即使用户已经访问了HTTP的版本。原因可能是你不想让用户使用HTTP来访问,因为它不安全。 要做到这个很简单,如果不想用PHP或者Apache的mod_rewrite来做这件事...
二進制的头像-THE FREE SKY二進制4月5日 14:31
07450