排序
宝塔环境下的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 ...
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_...
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...
Nginx环境下安装Cloudreve实行静态化的方法
对于Nginx服务器,以下是一个可供参考的配置 location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=/$1 last; break; } } 如果你的应用安装在二级目录,Nginx的伪静态方法设...
利用JavaScript实现强制重定向至HTTPS页面
有时候需要把网页强制切换成HTTPS,即使用户已经访问了HTTP的版本。原因可能是你不想让用户使用HTTP来访问,因为它不安全。 要做到这个很简单,如果不想用PHP或者Apache的mod_rewrite来做这件事...