如题,typecho伪静态.htaccess规则,备用。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
</IfModule>
http跳转https的.htaccess规则
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://0wu.org/$1 [R=301,L]
</IfModule>
最后更新: 2019-12-20 15:38
文章链接: https://995566.xyz/82019213.html
创作共享: 「署名 4.0 国际」许可协议进行许可~>_<
可以伪静态但是插件后台的插件就无法禁用修改....请问是什么问题所导致?