a1684257
Administrator
first commit
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#
# (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
# licensing, see LICENSE.html or http://ckeditor.com/license
#
#
# some specific Linux installations you could face problems with Firefox.
# could give you errors when loading the editor saying that some illegal
# were found (three strange chars in the beginning of the file).
# could happen if you map the .js or .css files to PHP, for example.
#
# characters are the Byte Order Mask (BOM) of the Unicode encoded files.
# All FCKeditor files are Unicode encoded.
#
AddType application/x-javascript .js
AddType text/css .css
#
# PHP is mapped to handle XML files, you could have some issues. The
# will disable it.
#
AddType text/xml .xml
|