<?xml version="1.0" encoding="utf-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><title>云藏龙</title><link>https://bk.araceae.cn/</link><description>龙应该藏在云里</description><item><title>elasticsearch索引因为修改数据库死了重新保存一下配置CirrusSearch扩展</title><link>https://bk.araceae.cn/?id=11</link><description>&lt;p&gt;自己想办法安装elasticsearch吧记得版本要是你media Wiki支持的版本&lt;br&gt;安装完所有扩展之后，在LocalSettings.php文件中加入&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$wgDisableSearchUpdate = true;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;我的注释了你不要注释啊！&lt;br&gt;&lt;img src=&quot;https://bk.araceae.cn/zb_users/upload/2025/08/202508261853564294670.png&quot; alt=&quot;&quot;&gt;&lt;br&gt;然后在终端cd你的/extensions/CirrusSearch目录输入下面这一行代码。&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-php&quot;&gt;php maintenance/UpdateSearchIndexConfig.php&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;运行完毕后，从LocalSettings.php文件中删除或者注释了$wgDisableSearchUpdate = true;&lt;br&gt;在终端cd到你的/extensions/CirrusSearch/maintenance目录中然后依次输入下面的命令。&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-php&quot;&gt;php ForceSearchIndex.php --skipLinks --indexOnSkip
php ForceSearchIndex.php --skipParse&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;然后几分钟后进入你的网站进去搜索一下一些基础的条目可以搜索出结果了，取决于你的elasticsearch优化或者你的服务器性能。&lt;/p&gt;
&lt;p&gt;参考文章：&lt;a href=&quot;https://tech.mindseed.cn/MediaWiKi/578.html&quot; title=&quot;为MediaWiki安装高级搜索（AdvancedSearch）插件&quot;&gt;为MediaWiki安装高级搜索（AdvancedSearch）插件&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;https://tech.mindseed.cn/MediaWiKi/578.html&quot;&gt;https://tech.mindseed.cn/MediaWiKi/578.html&lt;/a&gt;&lt;/p&gt;
</description><pubDate>Tue, 26 Aug 2025 18:52:37 +0800</pubDate></item><item><title>宝塔面板的mediawiki缩短域名页面重写url</title><link>https://bk.araceae.cn/?id=9</link><description>&lt;h2 id=&quot;h2-u9996u5148&quot;&gt;&lt;a name=&quot;首先&quot; class=&quot;reference-link&quot; href=&quot;#&quot;&gt;&lt;/a&gt;&lt;span class=&quot;header-link octicon octicon-link&quot;&gt;&lt;/span&gt;首先&lt;/h2&gt;&lt;p&gt;如果您使用的是宝塔面板，您可以通过以下步骤来修改Nginx的配置文件：&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;登录到宝塔面板。&lt;/li&gt;&lt;li&gt;在左侧菜单中，单击&lt;code&gt;网站&lt;/code&gt;，然后选择您要修改的网站。&lt;/li&gt;&lt;li&gt;在网站设置页面中，单击&lt;code&gt;配置文件&lt;/code&gt;。&lt;/li&gt;&lt;li&gt;在弹出的窗口中，您可以编辑Nginx的配置文件。您可以下面提到的方法，在配置文件中添加相应的代码来启用URL重写。&lt;/li&gt;&lt;li&gt;完成编辑后，单击&lt;code&gt;保存&lt;/code&gt;按钮，然后重启Nginx服务。&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;如果您在修改过程中遇到问题，您可以查看宝塔面板的官方文档或寻求宝塔面板的技术支持。&lt;/p&gt;
&lt;h3 id=&quot;h3--mediawiki-&quot;&gt;&lt;a name=&quot;先写配置查看mediawiki官方的。&quot; class=&quot;reference-link&quot; href=&quot;#&quot;&gt;&lt;/a&gt;&lt;span class=&quot;header-link octicon octicon-link&quot;&gt;&lt;/span&gt;先写配置查看mediawiki官方的。&lt;/h3&gt;&lt;p&gt;&lt;a href=&quot;https://www.mediawiki.org/wiki/Manual:Short_URL&quot;&gt;https://www.mediawiki.org/wiki/Manual:Short_URL&lt;/a&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;server {
    root /var/www/html;
    ...
    # Location for wiki&amp;#39;s entry points
    location ~ ^/myGod/(index|load|api|thumb|opensearch_desc|rest|img_auth)\.php$ {
        include /etc/nginx/fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_pass 127.0.0.1:9000; # or whatever port your PHP-FPM listens on
    }

    # Images
    location /myGod/images {
        # Separate location for images/ so .php execution won&amp;#39;t apply
    }
    location /myGod/images/deleted {
        # Deny access to deleted images folder
        deny all;
    }
    # MediaWiki assets (usually images)
    location ~ ^/myGod/resources/(assets|lib|src) {
        try_files $uri 404;
        add_header Cache-Control &amp;quot;public&amp;quot;;
        expires 7d;
    }
    # Assets, scripts and styles from skins and extensions
    location ~ ^/myGod/(skins|extensions)/.+\.(css|js|gif|jpg|jpeg|png|svg|wasm)$ {
        try_files $uri 404;
        add_header Cache-Control &amp;quot;public&amp;quot;;
        expires 7d;
    }
    # Favicon
    location = /favicon.ico {
        alias /myGod/images/6/64/Favicon.ico;
        add_header Cache-Control &amp;quot;public&amp;quot;;
        expires 7d;
    }

    # License and credits files
    location ~ ^/myGod/(COPYING|CREDITS)$ {
        default_type text/plain;
    }

    ## Uncomment the following code if you wish to use the installer/updater
    ## installer/updater
    #location /myGod/mw-config/ {
    #    # Do this inside of a location so it can be negated
    #    location ~ \.php$ {
    #        include /etc/nginx/fastcgi_params;
    #        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    #        fastcgi_pass 127.0.0.1:9000; # or whatever port your PHP-FPM listens on
    #    }
    #}

    # Handling for Mediawiki REST API, see [[mw:API:REST_API]]
    location /myGod/rest.php/ {
        try_files $uri $uri/ /myGod/rest.php?$query_string;
    }

    ## Uncomment the following code for handling image authentication
    ## Also add &amp;quot;deny all;&amp;quot; in the location for /w/images above
    #location /myGod/img_auth.php/ {
    #    try_files $uri $uri/ /myGod/img_auth.php?$query_string;
    #}

    # Handling for the article path (pretty URLs)
    location /wiki/ {
        rewrite ^/wiki/(?&amp;lt;pagename&amp;gt;.*)$ /myGod/index.php;
    }

    # Allow robots.txt in case you have one
    location = /robots.txt {
    }
    # Explicit access to the root website, redirect to main page (adapt as needed)
    location = / {
        return 301 /wiki/首页;
    }
    ...
}&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&quot;h2--&quot;&gt;&lt;a name=&quot;我们只需要里面的注意！&quot; class=&quot;reference-link&quot; href=&quot;#&quot;&gt;&lt;/a&gt;&lt;span class=&quot;header-link octicon octicon-link&quot;&gt;&lt;/span&gt;我们只需要里面的注意！&lt;/h2&gt;&lt;p&gt;要修改下面的不多请注意检查！&lt;br&gt;下面的是mediawiki安装在“域名.com/myGod/”也就是域名的二级目录就只需要修改就需要把myGod修改成你的二级目录名字。&lt;br&gt;如果是直接安在一级目录把/myGod/修改为一条“/”就行了。&lt;/p&gt;
&lt;p&gt;还有就是下面63行的/wiki/使用了/wiki/在浏览器渲染就是https://域名.com/wiki/首页。&lt;/p&gt;
&lt;p&gt;还有一些其他操作比如https://自定义.域名.com/wiki/首页&lt;br&gt;可以设置自定义这几个字这里的二级域名。这里没有写。&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;location ~ ^/myGod/(index|load|api|thumb|opensearch_desc|rest|img_auth)\.php$ {
        include /etc/nginx/fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_pass 127.0.0.1:9000; # or whatever port your PHP-FPM listens on
    }

    # Images
    location /myGod/images {
        # Separate location for images/ so .php execution won&amp;#39;t apply
    }
    location /myGod/images/deleted {
        # Deny access to deleted images folder
        deny all;
    }
    # MediaWiki assets (usually images)
    location ~ ^/myGod/resources/(assets|lib|src) {
        try_files $uri 404;
        add_header Cache-Control &amp;quot;public&amp;quot;;
        expires 7d;
    }
    # Assets, scripts and styles from skins and extensions
    location ~ ^/myGod/(skins|extensions)/.+\.(css|js|gif|jpg|jpeg|png|svg|wasm)$ {
        try_files $uri 404;
        add_header Cache-Control &amp;quot;public&amp;quot;;
        expires 7d;
    }
    # Favicon
    location = /favicon.ico {
        alias /myGod/images/6/64/Favicon.ico;
        add_header Cache-Control &amp;quot;public&amp;quot;;
        expires 7d;
    }

    # License and credits files
    location ~ ^/myGod/(COPYING|CREDITS)$ {
        default_type text/plain;
    }

    ## Uncomment the following code if you wish to use the installer/updater
    ## installer/updater
    #location /myGod/mw-config/ {
    #    # Do this inside of a location so it can be negated
    #    location ~ \.php$ {
    #        include /etc/nginx/fastcgi_params;
    #        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    #        fastcgi_pass 127.0.0.1:9000; # or whatever port your PHP-FPM listens on
    #    }
    #}

    # Handling for Mediawiki REST API, see [[mw:API:REST_API]]
    location /myGod/rest.php/ {
        try_files $uri $uri/ /myGod/rest.php?$query_string;
    }

    ## Uncomment the following code for handling image authentication
    ## Also add &amp;quot;deny all;&amp;quot; in the location for /w/images above
    #location /myGod/img_auth.php/ {
    #    try_files $uri $uri/ /myGod/img_auth.php?$query_string;
    #}

    # Handling for the article path (pretty URLs)
    location /wiki/ {
        rewrite ^/wiki/(?&amp;lt;pagename&amp;gt;.*)$ /myGod/index.php;
    }

    # Allow robots.txt in case you have one
    location = /robots.txt {
    }
    # Explicit access to the root website, redirect to main page (adapt as needed)
    location = / {
        return 301 /wiki/首页;
    }&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&quot;h2--&quot;&gt;&lt;a name=&quot;等等还有哦！&quot; class=&quot;reference-link&quot; href=&quot;#&quot;&gt;&lt;/a&gt;&lt;span class=&quot;header-link octicon octicon-link&quot;&gt;&lt;/span&gt;等等还有哦！&lt;/h2&gt;&lt;h5 id=&quot;h5--&quot;&gt;&lt;a name=&quot;注意！还要修改配置！&quot; class=&quot;reference-link&quot; href=&quot;#&quot;&gt;&lt;/a&gt;&lt;span class=&quot;header-link octicon octicon-link&quot;&gt;&lt;/span&gt;注意！还要修改配置！&lt;/h5&gt;&lt;p&gt;准备两个东西：fastcgi_params和fastcgi_pass。&lt;br&gt;来修改上面里面的下面代码。&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;    #        include /etc/nginx/fastcgi_params;
    #        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    #        fastcgi_pass 127.0.0.1:9000; # or whatever port your PHP-FPM listens on&lt;/code&gt;&lt;/pre&gt;&lt;h3 id=&quot;h3-u4E00&quot;&gt;&lt;a name=&quot;一&quot; class=&quot;reference-link&quot; href=&quot;#&quot;&gt;&lt;/a&gt;&lt;span class=&quot;header-link octicon octicon-link&quot;&gt;&lt;/span&gt;一&lt;/h3&gt;&lt;p&gt;fastcgi_params在宝塔nginx的conf文件夹里，路径为/www/server/nginx/conf/fastcgi_params。&lt;/p&gt;
&lt;p&gt;mediawiki官网给的nginx安装在/etc/下。&lt;/p&gt;
&lt;h3 id=&quot;h3-u4E8C&quot;&gt;&lt;a name=&quot;二&quot; class=&quot;reference-link&quot; href=&quot;#&quot;&gt;&lt;/a&gt;&lt;span class=&quot;header-link octicon octicon-link&quot;&gt;&lt;/span&gt;二&lt;/h3&gt;&lt;p&gt;宝塔Nginx和PHP-FPM的进程通信方式是UNIX Domain Socket，因此fastcgi_pass不能用官网给的IP:端口，需要改成unix:sock形式。打开宝塔面板 - 软件商店 - PHP设置 - FPM配置文件，可以看到PHP-FPM在监听/tmp/php-cgi-80.sock，fastcgi_pass就是他。&lt;/p&gt;
&lt;h5 id=&quot;h5--&quot;&gt;&lt;a name=&quot;一定有修改端口不然必出问题！&quot; class=&quot;reference-link&quot; href=&quot;#&quot;&gt;&lt;/a&gt;&lt;span class=&quot;header-link octicon octicon-link&quot;&gt;&lt;/span&gt;一定有修改端口不然必出问题！&lt;/h5&gt;&lt;p&gt;&lt;img src=&quot;https://bk.araceae.cn/zb_users/upload/2023/07/202307062304064102554.png&quot; alt=&quot;&quot;&gt;&lt;br&gt;没改fastcgi_pass，把官网给的127.0.0.1:9000填上去，mediawiki里的.js和.css页面打不开。&lt;/p&gt;
&lt;p&gt;推荐一个小工具虽然我不用。。。。&lt;br&gt;&lt;a href=&quot;https://shorturls.redwerks.org/&quot;&gt;https://shorturls.redwerks.org/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;个人修改并且正在使用的代码可以做为参考。&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;#    location ~ \.php$ {
    #        include /www/server/nginx/conf/fastcgi_params;
    #        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    #        fastcgi_pass 127.0.0.1:0666; # or whatever port your PHP-FPM listens on
    #    }
    #}&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&quot;h2--mediawiki-localsettings-php-&quot;&gt;&lt;a name=&quot;在mediawiki网站的LocalSettings.php添加&quot; class=&quot;reference-link&quot; href=&quot;#&quot;&gt;&lt;/a&gt;&lt;span class=&quot;header-link octicon octicon-link&quot;&gt;&lt;/span&gt;在mediawiki网站的LocalSettings.php添加&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;$wgScriptPath = &amp;quot;&amp;quot;;
$wgArticlePath = &amp;quot;/wiki/$1&amp;quot;;
$wgUsePathInfo = true;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;然后你发现正常了，吗？&lt;br&gt;没有！&lt;br&gt;以&lt;code&gt;文件:XXXX.jpg&lt;/code&gt;通通被保护了全部404吓死你！&lt;br&gt;&lt;img src=&quot;https://bk.araceae.cn/zb_users/upload/2023/06/202306301101165638612.png&quot; alt=&quot;&quot;&gt;&lt;br&gt;在把网页这些 注释/删除 就好了，主要是不舍得删除配置（&lt;del&gt;一开始是看不懂的问题&lt;/del&gt;）的问题，这个主要是宝塔的默认安全配置问题导致有特别后缀被识别就无法加载了&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;#    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
#   {
#       expires      30d;
#       error_log /dev/null;
#        access_log /dev/null;
#   }
#
#   location ~ .*\.(js|css)?$
#   {
#      expires      12h;
#      error_log /dev/null;
#      access_log /dev/null;
# }&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;到这里还不能解决就没办法了，你去求那些大佬吧。&lt;/p&gt;
</description><pubDate>Fri, 30 Jun 2023 10:44:42 +0800</pubDate></item><item><title>mediawiki修复使用图片预览无法加载问题</title><link>https://bk.araceae.cn/?id=8</link><description>&lt;p&gt;一般情况下&lt;img src=&quot;https://bk.araceae.cn/zb_users/upload/2023/03/202303231037284797688.png&quot; alt=&quot;&quot;&gt;&lt;br&gt;不正常情况下&lt;br&gt;&lt;img src=&quot;https://bk.araceae.cn/zb_users/upload/2023/03/202303231039078256543.jpg&quot; alt=&quot;&quot;&gt;&lt;br&gt;解决办法来了把站点升级成https就好了。可能是部分浏览器不能正常加载https和http混合站点导致的。&lt;br&gt;注意不止部署ssl还要修改LocalSettings.php配置&lt;br&gt;&lt;img src=&quot;https://bk.araceae.cn/zb_users/upload/2023/06/202306202123098424593.png&quot; alt=&quot;&quot;&gt;&lt;/p&gt;
</description><pubDate>Tue, 20 Jun 2023 21:20:24 +0800</pubDate></item><item><title>给你的mediawiki（公民皮肤）添加一个背景</title><link>https://bk.araceae.cn/?id=7</link><description>&lt;p&gt;注意这个教程是全站的如果想个别页面可以使用单独页面加载javascript的方法&lt;/p&gt;
&lt;p&gt;首先&lt;br&gt;注意新版本大概率是要添加到全站的css因为新的mediawiki（本站目前1.39+）对于css有更多安全要求。&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-css&quot;&gt;/* Common.css */
body {
    background-image: url(&amp;#39;https://cn.bing.com/th?id=OHR.BiodiverseCostaRica_EN-US2611109244_UHD.jpg&amp;amp;rf=LaDigue_UHD.jpg&amp;amp;pid=hp&amp;amp;w=3840&amp;amp;h=2160&amp;amp;rs=1&amp;amp;c=4&amp;#39;);
    background-repeat: no-repeat;
    background-size: cover;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;上面这个可能让你看不清页面原生的一些字因为背景的原因，所以我应用了一个模糊滤镜，以实现毛玻璃效果。你可以根据需要更改颜色、透明度和模糊程度。&lt;br&gt;同样这种“backdrop-filter”样式在其他页面是使用不了的，大概率是要添加到全站。&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-css&quot;&gt;.mw-body {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;请注意，backdrop-filter属性目前在所有浏览器中都不完全支持，因此这种方法可能不会在所有浏览器中都有效。&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-javascript&quot;&gt;/* Common.js */
$(document).ready(function() {
    $(&amp;#39;body&amp;#39;).css(&amp;#39;background-image&amp;#39;, &amp;#39;url(https://cn.bing.com/th?id=OHR.BiodiverseCostaRica_EN-US2611109244_UHD.jpg&amp;amp;rf=LaDigue_UHD.jpg&amp;amp;pid=hp&amp;amp;w=3840&amp;amp;h=2160&amp;amp;rs=1&amp;amp;c=4)&amp;#39;);
});&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;效果图还是有不兼容的&lt;br&gt;&lt;img src=&quot;https://bk.araceae.cn/zb_users/upload/2023/06/202306202106551096715.png&quot; alt=&quot;&quot;&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://bk.araceae.cn/zb_users/upload/2023/06/202306202107167296058.png&quot; alt=&quot;&quot;&gt;&lt;br&gt;暗色模式你设置的背景也不会变，可以直接写一个js判断我就不写了。&lt;br&gt;&lt;img src=&quot;https://bk.araceae.cn/zb_users/upload/2023/06/202306202109103903231.png&quot; alt=&quot;&quot;&gt;&lt;br&gt;滤镜也挡住另外一个图片元素了。&lt;br&gt;&lt;img src=&quot;https://bk.araceae.cn/zb_users/upload/2023/06/202306202110241447341.png&quot; alt=&quot;&quot;&gt;&lt;/p&gt;
&lt;p&gt;解决“backdrop-filter”办法用其他类似代码做。&lt;br&gt;使用了一个伪元素来创建一个模糊的背景图像，并在内容区域上方添加了一个半透明的白色遮罩，以实现类似毛玻璃的效果。您可以根据需要更改背景图片、模糊程度和遮罩颜色。&lt;br&gt;ps：效果要差一些。&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-css&quot;&gt;.mw-body {
    position: relative;
}

.mw-body:before {
    content: &amp;quot;&amp;quot;;
    background-image: url(&amp;#39;https://example.com/background.jpg&amp;#39;);
    filter: blur(10px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#content {
    background-color: rgba(255, 255, 255, 0.5);
}
&lt;/code&gt;&lt;/pre&gt;
</description><pubDate>Tue, 20 Jun 2023 20:54:25 +0800</pubDate></item><item><title>mediawiki更换域名</title><link>https://bk.araceae.cn/?id=5</link><description>&lt;p&gt;如果您的服务器是阿里云或者腾讯云有免费的服务器快照创建可以做为一个备份！！！&lt;/p&gt;
&lt;p&gt;先把需要复制的mediawiki原域名文件夹下面的所有文件复制到你需要更换的新域名文件夹下面，&lt;strong&gt;注意文件原来的权限！&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;还有MySQL的数据库一样要备份或者复制到新的数据库！&lt;/p&gt;
&lt;p&gt;先修改刚刚复制到你的新域名文件夹下面的LocalSettings.php打开编辑把原来的域名修改成你的新域名。&lt;/p&gt;
&lt;p&gt;在链接SSH进入mediawiki（你的域名文件夹）/maintenance运行下面命令。&lt;br&gt;SSH链接了cd进入你的域名下面的maintenance文件夹运行php update.php指令。&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-php&quot;&gt;php update.php&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;一般没有报错的，有我也不知道怎么办。。&lt;br&gt;&lt;img src=&quot;https://bk.araceae.cn/zb_users/upload/2023/03/202303231036074777915.jpg&quot; alt=&quot;&quot;&gt;&lt;br&gt;目前发现有个小问题，就是全屏预览图片的插件“MultimediaViewer”&lt;br&gt;一般情况下&lt;img src=&quot;https://bk.araceae.cn/zb_users/upload/2023/03/202303231037284797688.png&quot; alt=&quot;&quot;&gt;&lt;br&gt;不正常情况下&lt;br&gt;&lt;img src=&quot;https://bk.araceae.cn/zb_users/upload/2023/03/202303231039078256543.jpg&quot; alt=&quot;&quot;&gt;&lt;br&gt;没错不知道为什么但是同一台机器系统分身了同一个浏览器又正常打开了，个人猜测估计是浏览器缓存问题因为我之前就出现这个问题后面才重新操作了一次运行升级脚本就在微信上面解决了这个问题，毕竟分身的浏览器正常打开。。。&lt;br&gt;毕竟这么多浏览器换一个就好了hhh&lt;/p&gt;
&lt;p&gt;解决办法来了把站点升级成https就好了。可能是部分浏览器不能正常加载https和http混合站点导致的。&lt;br&gt;注意不止部署ssl还要修改LocalSettings.php配置&lt;br&gt;&lt;img src=&quot;https://bk.araceae.cn/zb_users/upload/2023/06/202306202123098424593.png&quot; alt=&quot;&quot;&gt;&lt;/p&gt;
</description><pubDate>Thu, 23 Mar 2023 10:20:15 +0800</pubDate></item></channel></rss>