forked from nystudio107/retour
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
50 lines (41 loc) · 1.18 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
/**
* Retour Configuration
*
* Completely optional configuration settings for Retour if you want to
* customize some of its more esoteric behavior, or just want specific control
* over things.
*
* Don't edit this file, instead copy it to 'craft/config' as 'retour.php' and
* make your changes there.
*/
return array(
/**
* Controls whether Retour automatically creates static redirects when an entry's URI changes.
*/
"createUriChangeRedirects" => true,
/**
* How many stats should be stored
*/
"statsStoredLimit" => 1000,
/**
* How many stats to display in the Admin CP
*/
"statsDisplayLimit" => 1000,
/**
* How many static redirects to display in the Admin CP
*/
"staticRedirectDisplayLimit" => 100,
/**
* How many dynamic redirects to display in the Admin CP
*/
"dynamicRedirectDisplayLimit" => 100,
/**
* Should the query string be stripped from the saved statistics source URLs?
*/
"stripQueryStringFromStats" => true,
/**
* Should the query string be stripped from all 404 URLs before their evaluation?
*/
"alwaysStripQueryString" => false,
);