管理员
- UID2
- 注册日期2012-11-28
- 最后登录2022-05-07
- 粉丝30
- 发帖数319
- 铜币5002924枚
- 威望1000091点
- 银元1000017个
- 贡献1000000点
- 鸡蛋1000000个
- 鲜花1000074朵
- 维币1000156个
|
阅读:2327回复:0
CF Image Host 1.6.5伪静态
楼主#
更多
发布于:2018-12-25 20:03
rewrite ^/gallery/$ /gallery.php last;
rewrite ^/gallery/([0-9]+)/$ /gallery.php?p=$1 last;
rewrite ^/gallery/(.*)/([0-9]+)/$ /gallery.php?p=$2&o=$1 last;
rewrite ^/gallery/([A-Za-z])/page([0-9]+)\.html$ /gallery.php?p=$2&o=$1 last;
rewrite ^/sitemap.xml$ /sitemap.php last;
rewrite ^/pm-(.*)\.(jpeg|jpg|png|gif|html)$ /index.php?pm=$1 last;
rewrite ^/pt-(.*)\.(jpeg|jpg|png|gif|html)$ /index.php?pt=$1 last;
rewrite ^/dt-(.*)\.(jpeg|jpg|png|gif)$ /index.php?dt=$1 last;
rewrite ^/dm-(.*)\.(jpeg|jpg|png|gif)$ /index.php?dm=$1 last;
rewrite ^/di-(.*)\.(jpeg|jpg|png|gif)$ /index.php?di=$1 last;
rewrite ^/page(.*)\.html$ /gallery.php?p=$1 last;
|