2019-11-21 21:49:53 +08:00
<!--
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
-->
2019-11-24 21:15:39 +08:00
[Chinese ](response-rewrite-cn.md )
2019-11-21 21:49:53 +08:00
2019-11-24 21:15:39 +08:00
# Summary
- [**Name** ](#name )
- [**Attributes** ](#attributes )
- [**How To Enable** ](#how-to-enable )
- [**Test Plugin** ](#test-plugin )
- [**Disable Plugin** ](#disable-plugin )
## Name
2019-11-21 21:49:53 +08:00
response rewrite plugin, rewrite the content from upstream.
2019-11-24 21:15:39 +08:00
**senario**:
1. can set `Access-Control-Allow-*` series field to support CORS(Cross-origin Resource Sharing).
2020-04-03 21:38:13 +08:00
2. we can set customized `status_code` and `Location` field in header to achieve redirect, you can alse use [redirect ](redirect.md ) plugin if you just want a redirection.
2019-11-21 21:49:53 +08:00
2019-11-24 21:15:39 +08:00
## Attributes
|Name |Requirement|Description|
2019-11-21 21:49:53 +08:00
|------- |-----|------|
2019-11-24 21:15:39 +08:00
|status_code |optional| New `status code` to client|
|body |optional| New `body` to client, and the content-length will be reset too.|
2020-04-02 12:03:58 +08:00
|body_base64 |optional| This is a boolean value, identify if `body` in configuration need base64 decoded before rewrite to client.|
2019-11-24 21:15:39 +08:00
|headers |optional| Set the new `headers` for client, can set up multiple. If it exists already from upstream, will rewrite the header, otherwise will add the header. You can set the corresponding value to an empty string to remove a header. |
2019-11-21 21:49:53 +08:00
2019-11-24 21:15:39 +08:00
## How To Enable
2019-11-21 21:49:53 +08:00
Here's an example, enable the `response rewrite` plugin on the specified route:
```shell
2020-03-05 14:48:27 +08:00
curl http://127.0.0.1:9080/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
2019-11-21 21:49:53 +08:00
{
"methods": ["GET"],
"uri": "/test/index.html",
"plugins": {
"response-rewrite": {
"body": "{\"code\":\"ok\",\"message\":\"new json body\"}",
"headers": {
"X-Server-id": 3,
"X-Server-status": "on"
}
}
},
"upstream": {
"type": "roundrobin",
"nodes": {
"127.0.0.1:80": 1
}
}
}'
```
2019-11-24 21:15:39 +08:00
## Test Plugin
2019-11-21 21:49:53 +08:00
Testing based on the above examples :
2019-11-24 21:15:39 +08:00
2019-11-21 21:49:53 +08:00
```shell
curl -X GET -i http://127.0.0.1:9080/test/index.html
```
2019-11-24 21:15:39 +08:00
It will output like below,no matter what kind of content from upstream.
2019-11-21 21:49:53 +08:00
```
HTTP/1.1 200 OK
Date: Sat, 16 Nov 2019 09:15:12 GMT
Transfer-Encoding: chunked
Connection: keep-alive
X-Server-id: 3
X-Server-status: on
{"code":"ok","message":"new json body"}
```
This means that the `response rewrite` plugin is in effect.
2019-11-24 21:15:39 +08:00
## Disable Plugin
When you want to disable the `response rewrite` plugin, it is very simple,
you can delete the corresponding json configuration in the plugin configuration,
no need to restart the service, it will take effect immediately:
```shell
2020-03-05 14:48:27 +08:00
curl http://127.0.0.1:9080/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
2019-11-24 21:15:39 +08:00
{
"methods": ["GET"],
"uri": "/test/index.html",
"upstream": {
"type": "roundrobin",
"nodes": {
"127.0.0.1:80": 1
}
}
}'
```
The `response rewrite` plugin has been disabled now. It works for other plugins.