Overview
You may need to export a list of all URL Redirect mappings configured in Symphony Manage.
Solution
Submit a request to Symphony Support stating that you need an export of current redirects; specify if you need to have all redirects exported, or only redirects of a specific type: Proxy, Forward, or Redirect.
<supportagent>
- Connect to the database and run the following query for the corresponding brand:
SELECT * FROM UrlMapping WHERE site = '<brand>'
You can filter the type of URL mapping forForward
,Proxy
orRedirect
in the following way:
SELECT * FROM UrlMapping WHERE site = '<brand>' AND type = ‘<type>'
- After generating the query, download the CSV file:
- Change the name to ‘URL Redirect Report for [Brand name]’ and share it with the requester.
</supportagent>
Comments
0 comments
Article is closed for comments.