-
Notifications
You must be signed in to change notification settings - Fork 0
/
htaccess-dist
196 lines (139 loc) · 13.6 KB
/
htaccess-dist
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#Headers when using Apache with CGI/FastCGI
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
#Adianti Framework Template default routes
RewriteRule ^system-program-list$ index.php?class=SystemProgramList&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^system-program-edit$ index.php?class=SystemProgramForm&method=onEdit&%{QUERY_STRING} [NC]
RewriteRule ^system-program-ondelete$ index.php?class=SystemProgramList&method=onDelete&%{QUERY_STRING} [NC]
RewriteRule ^system-program-delete$ index.php?class=SystemProgramList&method=Delete&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-program-list$ engine.php?class=SystemProgramList&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-program-ondelete$ engine.php?class=SystemProgramList&method=onDelete&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-program-delete$ engine.php?class=SystemProgramList&method=Delete&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-program-edit$ engine.php?class=SystemProgramForm&method=onEdit&%{QUERY_STRING} [NC]
RewriteRule ^system-group-list$ index.php?class=SystemGroupList&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^system-group-edit$ index.php?class=SystemGroupForm&method=onEdit&%{QUERY_STRING} [NC]
RewriteRule ^system-group-ondelete$ index.php?class=SystemGroupList&method=onDelete&%{QUERY_STRING} [NC]
RewriteRule ^system-group-delete$ index.php?class=SystemGroupList&method=Delete&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-group-list$ engine.php?class=SystemGroupList&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-group-edit$ engine.php?class=SystemGroupForm&method=onEdit&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-group-ondelete$ engine.php?class=SystemGroupList&method=onDelete&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-group-delete$ engine.php?class=SystemGroupList&method=Delete&%{QUERY_STRING} [NC]
RewriteRule ^system-role-list$ index.php?class=SystemRoleList&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^system-role-edit$ index.php?class=SystemRoleForm&method=onEdit&%{QUERY_STRING} [NC]
RewriteRule ^system-role-ondelete$ index.php?class=SystemRoleList&method=onDelete&%{QUERY_STRING} [NC]
RewriteRule ^system-role-delete$ index.php?class=SystemRoleList&method=Delete&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-role-list$ engine.php?class=SystemRoleList&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-role-edit$ engine.php?class=SystemRoleForm&method=onEdit&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-role-ondelete$ engine.php?class=SystemRoleList&method=onDelete&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-role-delete$ engine.php?class=SystemRoleList&method=Delete&%{QUERY_STRING} [NC]
RewriteRule ^system-unit-list$ index.php?class=SystemUnitList&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^system-unit-edit$ index.php?class=SystemUnitForm&method=onEdit&%{QUERY_STRING} [NC]
RewriteRule ^system-unit-ondelete$ index.php?class=SystemUnitList&method=onDelete&%{QUERY_STRING} [NC]
RewriteRule ^system-unit-delete$ index.php?class=SystemUnitList&method=Delete&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-unit-list$ engine.php?class=SystemUnitList&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-unit-edit$ engine.php?class=SystemUnitForm&method=onEdit&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-unit-ondelete$ engine.php?class=SystemUnitList&method=onDelete&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-unit-delete$ engine.php?class=SystemUnitList&method=Delete&%{QUERY_STRING} [NC]
RewriteRule ^system-user-list$ index.php?class=SystemUserList&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^system-user-edit$ index.php?class=SystemUserForm&method=onEdit&%{QUERY_STRING} [NC]
RewriteRule ^system-user-ondelete$ index.php?class=SystemUserList&method=onDelete&%{QUERY_STRING} [NC]
RewriteRule ^system-user-delete$ index.php?class=SystemUserList&method=Delete&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-user-list$ engine.php?class=SystemUserList&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-user-edit$ engine.php?class=SystemUserForm&method=onEdit&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-user-ondelete$ engine.php?class=SystemUserList&method=onDelete&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-user-delete$ engine.php?class=SystemUserList&method=Delete&%{QUERY_STRING} [NC]
RewriteRule ^system-database-explorer$ index.php?class=SystemDatabaseExplorer&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-database-explorer$ engine.php?class=SystemDatabaseExplorer&%{QUERY_STRING} [NC]
RewriteRule ^system-sqlpanel$ index.php?class=SystemSQLPanel&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-sqlpanel$ engine.php?class=SystemSQLPanel&%{QUERY_STRING} [NC]
RewriteRule ^system-phpinfo$ index.php?class=SystemPHPInfoView&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-phpinfo$ engine.php?class=SystemPHPInfoView&%{QUERY_STRING} [NC]
RewriteRule ^system-modules$ index.php?class=SystemModulesCheckView&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-modules$ engine.php?class=SystemModulesCheckView&%{QUERY_STRING} [NC]
RewriteRule ^system-preferences$ index.php?class=SystemPreferenceForm&method=onEdit&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-preferences$ engine.php?class=SystemPreferenceForm&method=onEdit&%{QUERY_STRING} [NC]
RewriteRule ^system-document-category-list$ index.php?class=SystemDocumentCategoryFormList&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^system-document-category-edit$ index.php?class=SystemDocumentCategoryFormList&method=onEdit&%{QUERY_STRING} [NC]
RewriteRule ^system-document-category-ondelete$ index.php?class=SystemDocumentCategoryFormList&method=onDelete&%{QUERY_STRING} [NC]
RewriteRule ^system-document-category-delete$ index.php?class=SystemDocumentCategoryFormList&method=Delete&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-document-category-list$ engine.php?class=SystemDocumentCategoryFormList&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-document-category-edit$ engine.php?class=SystemDocumentCategoryFormList&method=onEdit&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-document-category-ondelete$ engine.php?class=SystemDocumentCategoryFormList&method=onDelete&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-document-category-delete$ engine.php?class=SystemDocumentCategoryFormList&method=Delete&%{QUERY_STRING} [NC]
RewriteRule ^system-access-log-stat$ index.php?class=SystemAccessLogStats&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-access-log-stat$ engine.php?class=SystemAccessLogStats&%{QUERY_STRING} [NC]
RewriteRule ^system-access-log-list$ index.php?class=SystemAccessLogList&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-access-log-list$ engine.php?class=SystemAccessLogList&%{QUERY_STRING} [NC]
RewriteRule ^system-change-log-list$ index.php?class=SystemChangeLogView&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-change-log-list$ engine.php?class=SystemChangeLogView&%{QUERY_STRING} [NC]
RewriteRule ^system-sql-log-list$ index.php?class=SystemSqlLogList&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-sql-log-list$ engine.php?class=SystemSqlLogList&%{QUERY_STRING} [NC]
RewriteRule ^system-php-log-list$ index.php?class=SystemPHPErrorLogView&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-php-log-list$ engine.php?class=SystemPHPErrorLogView&%{QUERY_STRING} [NC]
RewriteRule ^system-shared-document-list$ index.php?class=SystemSharedDocumentList&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-shared-document-list$ engine.php?class=SystemSharedDocumentList&%{QUERY_STRING} [NC]
RewriteRule ^welcome-view$ index.php?class=WelcomeView&%{QUERY_STRING} [NC]
RewriteRule ^xhr-welcome-view$ engine.php?class=WelcomeView&%{QUERY_STRING} [NC]
RewriteRule ^login-form$ index.php?class=LoginForm&%{QUERY_STRING} [NC]
RewriteRule ^xhr-login-form$ engine.php?class=LoginForm&%{QUERY_STRING} [NC]
RewriteRule ^system-admin-dashboard$ index.php?class=SystemAdministrationDashboard&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-admin-dashboard$ engine.php?class=SystemAdministrationDashboard&%{QUERY_STRING} [NC]
RewriteRule ^system-log-dashboard$ index.php?class=SystemLogDashboard&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-log-dashboard$ engine.php?class=SystemLogDashboard&%{QUERY_STRING} [NC]
RewriteRule ^system-menu-editor$ index.php?class=SystemMenuEditor&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-menu-editor$ engine.php?class=SystemMenuEditor&%{QUERY_STRING} [NC]
RewriteRule ^system-request-log-list$ index.php?class=SystemRequestLogList&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-request-log-list$ engine.php?class=SystemRequestLogList&%{QUERY_STRING} [NC]
RewriteRule ^system-dump-view$ index.php?class=SystemSessionDumpView&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-dump-view$ engine.php?class=SystemSessionDumpView&%{QUERY_STRING} [NC]
RewriteRule ^system-message-form-view$ index.php?class=SystemMessageFormView&method=onView&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-message-form-view$ engine.php?class=SystemMessageFormView&method=onView&%{QUERY_STRING} [NC]
RewriteRule ^system-message-list-inbox$ index.php?class=SystemMessageList&method=filterInbox&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-message-list-inbox$ engine.php?class=SystemMessageList&method=filterInbox&%{QUERY_STRING} [NC]
RewriteRule ^system-message-list-sent$ index.php?class=SystemMessageList&method=filterSent&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-message-list-sent$ engine.php?class=SystemMessageList&method=filterSent&%{QUERY_STRING} [NC]
RewriteRule ^system-message-list-archived$ index.php?class=SystemMessageList&method=filterArchived&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-message-list-archived$ engine.php?class=SystemMessageList&method=filterArchived&%{QUERY_STRING} [NC]
RewriteRule ^system-notification-form-view$ index.php?class=SystemNotificationFormView&method=onView&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-notification-form-view$ engine.php?class=SystemNotificationFormView&method=onView&%{QUERY_STRING} [NC]
RewriteRule ^system-notification-list$ index.php?class=SystemNotificationList&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-notification-list$ engine.php?class=SystemNotificationList&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^system-files-diff$ index.php?class=SystemFilesDiff&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-files-diff$ engine.php?class=SystemFilesDiff&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^system-information-view$ index.php?class=SystemInformationView&method=onShow&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-information-view$ engine.php?class=SystemInformationView&method=onShow&%{QUERY_STRING} [NC]
RewriteRule ^system-wiki-list$ index.php?class=SystemWikiList&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^system-wiki-edit$ index.php?class=SystemWikiList&method=onEdit&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-wiki-list$ engine.php?class=SystemWikiList&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-wiki-edit$ engine.php?class=SystemWikiList&method=onEdit&%{QUERY_STRING} [NC]
RewriteRule ^system-post-list$ index.php?class=SystemPostList&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^system-post-edit$ index.php?class=SystemPostList&method=onEdit&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-post-list$ engine.php?class=SystemPostList&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-post-edit$ engine.php?class=SystemPostList&method=onEdit&%{QUERY_STRING} [NC]
RewriteRule ^system-post-feed$ index.php?class=SystemPostFeedView&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-post-feed$ engine.php?class=SystemPostFeedView&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^system-wiki-search$ index.php?class=SystemWikiSearchList&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^xhr-system-wiki-search$ engine.php?class=SystemWikiSearchList&method=onReload&%{QUERY_STRING} [NC]
#AUTH routes
RewriteRule ^auth/([A-Za-z0-9]*)/([A-Za-z0-9]*)$ rest.php?class=ApplicationAuthenticationRestService&method=getToken&login=$1&password=$2&%{QUERY_STRING} [NC]
#Application specific routes
RewriteRule ^contact-edit$ index.php?class=ContactForm&method=onEdit&%{QUERY_STRING} [NC]
RewriteRule ^contact-list$ index.php?class=ContactList&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^contact-ondelete$ index.php?class=ContactList&method=onDelete&%{QUERY_STRING} [NC]
RewriteRule ^contact-delete$ index.php?class=ContactList&method=Delete&%{QUERY_STRING} [NC]
RewriteRule ^xhr-contact-edit$ engine.php?class=ContactForm&method=onEdit&%{QUERY_STRING} [NC]
RewriteRule ^xhr-contact-list$ engine.php?class=ContactList&method=onReload&%{QUERY_STRING} [NC]
RewriteRule ^xhr-contact-ondelete$ engine.php?class=ContactList&method=onDelete&%{QUERY_STRING} [NC]
RewriteRule ^xhr-contact-delete$ engine.php?class=ContactList&method=Delete&%{QUERY_STRING} [NC]
#RESTFUL routes
RewriteRule ^contacts/([A-Za-z0-9]*)$ rest.php?class=ContactRestService&method=handle&id=$1&%{QUERY_STRING} [NC]
RewriteRule ^contacts/([A-Za-z-_0-9]*)/([A-Za-z-_0-9]*)$ rest.php?class=ContactRestService&method=$2&id=$1&%{QUERY_STRING} [NC]
RewriteRule ^contacts$ rest.php?class=ContactRestService&method=handle&%{QUERY_STRING} [NC]
RewriteRule ^users/([A-Za-z0-9]*)$ rest.php?class=SystemUserRestService&method=handle&id=$1&%{QUERY_STRING} [NC]
RewriteRule ^users/([A-Za-z-_0-9]*)/([A-Za-z-_0-9]*)$ rest.php?class=SystemUserRestService&method=$2&id=$1&%{QUERY_STRING} [NC]
RewriteRule ^users$ rest.php?class=SystemUserRestService&method=handle&%{QUERY_STRING} [NC]
RewriteRule ^user-groups/([A-Za-z0-9]*)$ rest.php?class=SystemUserGroupRestService&method=handle&id=$1&%{QUERY_STRING} [NC]
RewriteRule ^user-groups/([A-Za-z-_0-9]*)/([A-Za-z-_0-9]*)$ rest.php?class=SystemUserGroupRestService&method=$2&id=$1&%{QUERY_STRING} [NC]
RewriteRule ^user-groups$ rest.php?class=SystemUserGroupRestService&method=handle&%{QUERY_STRING} [NC]