Typecho去掉index.php
侧边栏壁纸
  • 累计撰写 75 篇文章
  • 累计收到 21 条评论

Typecho去掉index.php

逍遥博客
2021-12-10 / 0 评论 / 3 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于2023年09月22日,已超过308天没有更新,若内容或图片失效,请留言反馈。

Test

前后对比
Test

Test

LAMP

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
</IfModule>

LNMP

location / {
  if (!-e $request_filename){
    rewrite ^(.*)$ /index.php;
  }
}
0

评论 (0)

取消
Blog逍遥阁博客