mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
rhymix nginx rewrite rule
This commit is contained in:
parent
f9b723e5df
commit
df8f1f42e0
1 changed files with 51 additions and 0 deletions
51
common/manual/server_config/rhymix-nginx.conf
Normal file
51
common/manual/server_config/rhymix-nginx.conf
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
# reserve Rhymix Layout Template Source File (*.html)
|
||||
rewrite ^/(layouts|m.layouts)/(.+)/(.+).html$ /index.php last;
|
||||
|
||||
# reserve Rhymix Template Source File (*html)
|
||||
rewrite ^/(skins|m.skins)/(.+)\.html$ last; /index.php last;
|
||||
|
||||
# reserve setting files
|
||||
rewrite ^/files/config/(.+)\.php$ last;
|
||||
|
||||
# conf, query, schema
|
||||
rewrite ^/(modules|addons|widgets)/(.+)/(conf|queries|schemas)/(.+).xml$ /index.php last;
|
||||
|
||||
# static files
|
||||
rewrite ^/(.+)/files/(member_extra_info|attach|cache|faceOff)/(.*) /files/$2/$3 last;
|
||||
rewrite ^/(.+)/(files|modules|widgets|widgetstyles|layouts|m.layouts|addons)/(.*) /$2/$3 last;
|
||||
|
||||
# rss, blogAPI
|
||||
rewrite ^/(rss|atom)$ /index.php?module=rss&act=$1 last;
|
||||
rewrite ^/([a-zA-Z0-9_]+)/(rss|atom|api)$ /index.php?mid=$1&act=$2 last;
|
||||
rewrite ^/([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/(rss|atom|api)$ /index.php?vid=$1&mid=$2&act=$3 last;
|
||||
|
||||
# trackback
|
||||
rewrite ^/([0-9]+)/(.+)/trackback$ /index.php?document_srl=$1&key=$2&act=trackback last;
|
||||
rewrite ^/([a-zA-Z0-9_]+)/([0-9]+)/(.+)/trackback$ /index.php?vid=$1&document_srl=$2&key=$3&act=trackback last;
|
||||
|
||||
# administrator page
|
||||
rewrite ^/admin/?$ /index.php?module=admin last;
|
||||
|
||||
# document category
|
||||
rewrite ^/([a-zA-Z0-9_]+)/category/([0-9]+)$ /index.php?mid=$1&category=$2 last;
|
||||
|
||||
# document permanent link
|
||||
rewrite ^/([0-9]+)$ /index.php?document_srl=$1 last;
|
||||
|
||||
# mid link
|
||||
rewrite ^/([a-zA-Z0-9_]+)/?$ /index.php?mid=$1 last;
|
||||
|
||||
# mid + document link
|
||||
rewrite ^/([a-zA-Z0-9_]+)/([0-9]+)$ /index.php?mid=$1&document_srl=$2 last;
|
||||
|
||||
# vid + mid link
|
||||
rewrite ^/([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/?$ /index.php?vid=$1&mid=$2 last;
|
||||
|
||||
# vid + mid + document link
|
||||
rewrite ^/([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/([0-9]+)$ /index.php?vid=$1&mid=$2&document_srl=$3 last;
|
||||
|
||||
# mid + entry title
|
||||
rewrite ^/([a-zA-Z0-9_]+)/entry/(.+)$ /index.php?mid=$1&entry=$2 last;
|
||||
|
||||
# vid + mid + entry title
|
||||
rewrite ^/([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/entry/(.+)$ /index.php?vid=$1&mid=$2&entry=$3 last;
|
||||
Loading…
Add table
Add a link
Reference in a new issue