-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathurlrewrite.php
More file actions
50 lines (49 loc) · 961 Bytes
/
Copy pathurlrewrite.php
File metadata and controls
50 lines (49 loc) · 961 Bytes
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
<?
$arUrlRewrite = array(
array(
"CONDITION" => "#^/audio-playlist/#",
"RULE" => "",
"ID" => "bitrix:news",
"PATH" => "/audio-playlist/index.php",
),
array(
"CONDITION" => "#^/programmy/#",
"RULE" => "",
"ID" => "bitrix:news",
"PATH" => "/programmy/index.php",
"SORT" => "100",
),
array(
"CONDITION" => "#^/stati/#",
"RULE" => "",
"ID" => "bitrix:news",
"PATH" => "/stati/index.php",
"SORT" => "100",
),
array(
"CONDITION" => "#^/audio/#",
"RULE" => "",
"ID" => "bitrix:news",
"PATH" => "/audio/index.php",
"SORT" => "100",
),
array(
"CONDITION" => "#^/video/#",
"RULE" => "",
"ID" => "bitrix:news",
"PATH" => "/video/index.php",
),
array(
"CONDITION" => "#^/novosti/#",
"RULE" => "",
"ID" => "bitrix:news",
"PATH" => "/novosti/index.php",
),
array(
"CONDITION" => "#^/kontakty/#",
"RULE" => "",
"ID" => "",
"PATH" => "/o-nas/contacts/index.php",
)
);
?>