Skip to content

Commit

Permalink
v3.3.1版本修复
Browse files Browse the repository at this point in the history
修复Apache伪静态存在的问题
  • Loading branch information
IvanHanloth authored May 12, 2023
1 parent 55563d6 commit 8c0a1cb
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions 安装说明!!!.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@
注意,需要配置伪静态才能正常使用!

Apache:
RewriteRule ^/download+(?:\/?)+(.*)$ /index.php?mode=download&$1;
RewriteRule ^/app+(\/?)$ /index.php?mode=app;
RewriteRule ^/user+(\/?)$ /index.php?mode=user;
RewriteEngine on
RewriteBase /
RewriteRule ^download/?$ /index.php?mode=download [QSA,L]
RewriteRule ^user/?$ /index.php?mode=user [QSA,L]
RewriteRule ^app/?$ /index.php?mode=app [QSA,L]



Nginx(推荐):
Expand Down

0 comments on commit 8c0a1cb

Please sign in to comment.