Using Netscape � Communicator 4.7, I could view SVG files locally saved in
my
PC.
But when I upload the same SVG file to another PC - which is a WebServer
(using Apache Web Server). It display the SVG file as a text file. When I
use HTML and Embed the SVG file, it displays a blank area
It sounds like I don't have the server -Apache - configured to serve SVG
files. I tried to add the mime type of: image/svg+xml.
Steps:
In httpd.conf, I add:
<IfModule mod_mime.c>
TypesConfig /PATH/conf/mime.types
AddType image/svg+xml .svg >>>>> The new Line
</IfModule>
and In mime.types, I add
image/svg+xml svg
after every change I restart Server.
But It dose not work
Any Advice
Hanan