This is a full list of all the available properties that can be used within your routes.yaml config file to manipulate your URL structure
| Property | Description | 
|---|---|
| template | Determines which Handlebars template file will be used for this route. Defaults to index.hbsif not specified. | 
| permalink | The generated URL for any post within a collection. Can contain dynamic variables based on post data: 
 | 
| filter | Extensively filter posts returned in collections and channels using the full power and syntax of the Ghost Content API For example author:cameron+tag:newswill return all posts published by Cameron, tagged with ‘News‘. Mix and match to suit. | 
| order | Choose any number of fields and sort orders for your content: 
 | 
| data | Fetch & associate data from the Ghost API with a specified route. The source route of the data will be redirected to the new custom route. 
 | 
| rss | Collections and channels come with automatically generated RSS feeds which can be disabled by setting the rssproperty tofalse | 
| content_type | Specify the mime-type for the current route, default: HTML | 
| controller | Add a custom controller to a route to perform additional functions. Currently the only supported value is channel | 
原文:https://www.cnblogs.com/QDuck/p/12081557.html