typecho伪静态.htaccess规则

2021-07-09 10:36:48 浏览数 (1)

如题,typecho伪静态.htaccess规则,备用。

代码语言:javascript复制
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
</IfModule>

http跳转https的.htaccess规则

代码语言:javascript复制
<IfModule mod_rewrite.c>
 RewriteEngine On
 RewriteBase /
 RewriteCond %{SERVER_PORT} 80
 RewriteRule ^(.*)$ https://0wu.org/$1 [R=301,L]
</IfModule>

0 人点赞