admin 发表于 2023-1-27 18:26:17

修罗XiunoBBS伪静态设置

修罗XiunoBBS伪静态设置

手动创建一个txt文件,上传到服务器后修改名为 .htaccess,粘贴规则代码到文件里,保存并到网站根目录wwwroot(或者其他的网站根目录,比如public-html)就行了。
伪静态规则(.htaccess文件里的内容)如下
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^admin/(.*)\.htm$ /admin/index.php?$1.htm
RewriteRule ^mobile/(.*)\.htm$ /mobile/index.php?$1.htm
RewriteRule ^(.*)\.htm$ /index.php?$1.htm
</IfModule>

页: [1]
查看完整版本: 修罗XiunoBBS伪静态设置