This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # zh-CN translations for Typus (template) | |
| # by ZoOL <http://github.com/zhooul> | |
| zh-CN: | |
| "A valid token is required": "需要验证令牌" | |
| "Actions": "动作" | |
| "Active": "已激活" | |
| "Add": "新增" | |
| "Add %{resource}": "新增 %{resource}" | |
| "Add new": "新增" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| location ~/(.*)/wp-admin/$ { | |
| index index.php; | |
| rewrite ^/(.*)/wp-admin/$ /wp-admin/ break; | |
| } | |
| location ~ /(.*)/wp-([a-zA-Z])*\.php { | |
| index index.php; | |
| rewrite ^/(.*)/(.*\.php) /$2 last; | |
| } | |
| location ~ /(.*)/(wp-(?:admin|content|includes).*\.php) { | |
| root /var/www/html/wordpress/; |
NewerOlder