mirror of https://github.com/1Panel-dev/1Panel
Browse Source
修复maccms rewrite 配置文件错误导致登陆时提示ERR_TOO_MANY_REDIRECTS 重定向次数过多的问题 #### What this PR does / why we need it? #### Summary of your change #### Please indicate you've done the following: - [x] Made sure tests are passing and test coverage is added if needed. - [x] Made sure commit message follow the rule of [Conventional Commits specification](https://www.conventionalcommits.org/). - [ ] Considered the docs impact and opened a new docs issue or PR with docs changes if needed.pull/954/head
FoXiMao
2 years ago
committed by
GitHub
1 changed files with 13 additions and 5 deletions
@ -1,5 +1,13 @@ |
|||||||
rewrite ^/vod-(.*)$ /index.php?m=vod-$1 break; |
if (!-e $request_filename) { |
||||||
rewrite ^/art-(.*)$ /index.php?m=art-$1 break; |
rewrite ^/index.php(.*)$ /index.php?s=$1 break; |
||||||
rewrite ^/gbook-(.*)$ /index.php?m=gbook-$1 break; |
# MacCMS要求强制修改后台文件名称 所以需要手动修改下方这条重写规则 将admin修改为你修改后的文件名即可 |
||||||
rewrite ^/label-(.*)$ /index.php?m=label-$1 break; |
rewrite ^/admin.php(.*)$ /admin.php?s=$1 break; |
||||||
rewrite ^/map-(.*)$ /index.php?m=map-$1 break; |
rewrite ^/api.php(.*)$ /api.php?s=$1 break; |
||||||
|
rewrite ^/(.*)$ /index.php?s=$1 break; |
||||||
|
rewrite ^/vod-(.*)$ /index.php?m=vod-$1 break; |
||||||
|
rewrite ^/art-(.*)$ /index.php?m=art-$1 break; |
||||||
|
rewrite ^/gbook-(.*)$ /index.php?m=gbook-$1 break; |
||||||
|
rewrite ^/label-(.*)$ /index.php?m=label-$1 break; |
||||||
|
rewrite ^/map-(.*)$ /index.php?m=map-$1 break; |
||||||
|
} |
||||||
|
try_files $uri $uri/ /index.php?$query_string; |
Loading…
Reference in new issue