排序
Nginx环境重写Rank Math Sitemaps
# START Nginx Rewrites for Rank Math Sitemaps rewrite ^/sitemap_index.xml$ /index.php?sitemap=1 last; rewrite ^/([^/]+?)-sitemap([0-9]+)?.xml$ /index.php?sitemap=$1&sitemap_n=$...
Helpdesk Apache / Nginx静态化方法
Apache RewriteEngine ON RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.php [L] ErrorDocument 404 /404/ Nginx location / { index ...
解决宝塔面板Nginx/Apache防火墙后无法启动
根据版本在SSH输入以下命令: Nginx 版本 mv /www/server/panel/vhost/nginx/btwaf.conf /tmp/btwaf.conf_back mv /www/server/panel/vhost/nginx/total.conf /tmp/total.conf_back...
寶塔面板升級Nginx防火墻後無法啟動Nginx的解決辦法
1、登錄SSH 輸入: yum install -y gcc gcc-c++ 2、在寶塔目錄下,轉到此路徑:/www/server/panel/plugin/btwaf 3、打開info.json文件,將裡面的版本號改成低於目前最新的版本號。 4、重新升級N...
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的伪静态方法设...
使用BT面板有串站現象的解決辦法
所謂串站,一般是以下幾種情況導致: 1、配置文件有錯誤,導致nginx/apache無法完成配置重載,即網站創建沒實際生效 2、nginx/apache有殘留進程,導致配置文件沒有生效 3、如果是域名未創建站點...