mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
562 B
11 lines
562 B
location / {
|
|
rewrite ^/frim/index(.+?)\.html$ /list/index.php?$1 last;
|
|
rewrite ^/movie/index(.+?)\.html$ /detail/index.php?$1 last;
|
|
rewrite ^/play/([0-9]+)-([0-9]+)-([0-9]+)\.html$ /video/index.php?$1-$2-$3 last;
|
|
rewrite ^/topic/index(.+?)\.html$ /topic/index.php?$1 last;
|
|
rewrite ^/topiclist/index(.+?).html$ /topiclist/index.php?$1 last;
|
|
rewrite ^/index\.html$ index.php permanent;
|
|
rewrite ^/news\.html$ news/ permanent;
|
|
rewrite ^/part/index(.+?)\.html$ /articlelist/index.php?$1 last;
|
|
rewrite ^/article/index(.+?)\.html$ /article/index.php?$1 last;
|
|
} |