Home  >  Article  >  Operation and Maintenance  >  How to set up pseudo-static WeCenter in Nginx environment

How to set up pseudo-static WeCenter in Nginx environment

WBOY
WBOYforward
2023-05-15 21:52:04686browse

将WeCenter问答细碎放入站点根目次下aks目录下,配置伪消息规定代码以下:

rewrite ^([^\.]*)/ask/static/(.*)$ $1/ask/static/$2 last;
rewrite ^([^\.]*)/ask/uploads/(.*)$ $1/ask/uploads/$2 last;
rewrite ^([^\.]*)/ask/(.*)$ $1/ask/index.php?/$2 last;
rewrite ^([^\.]*)/ask/topic/(.*)$ $1/ask/cnurl.php last;

假设问答系统WeCenter放在网站根目次下伪消息代码:

rewrite ^([^\.]*)/static/(.*)$ $1/static/$2 last;
rewrite ^([^\.]*)/uploads/(.*)$ $1/uploads/$2 last;
rewrite ^([^\.]*)/(.*)$ $1/index.php?/$2 last;
rewrite ^([^\.]*)/topic/(.*)$ $1/cnurl.php last;

The above is the detailed content of How to set up pseudo-static WeCenter in Nginx environment. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:yisu.com. If there is any infringement, please contact admin@php.cn delete