diff --git a/geek.cabal b/geek.cabal
--- a/geek.cabal
+++ b/geek.cabal
@@ -1,5 +1,5 @@
 Name:                 geek
-Version:              1.0.0.7
+Version:              1.0.0.8
 Build-type:           Simple
 Synopsis:             Geek blog engine
 Description:          A dynamic blog engine, customizable with standard web technology, i.e. HTML, CSS and Javascript (JSON)
diff --git a/src/Web/Geek/Application.hs b/src/Web/Geek/Application.hs
--- a/src/Web/Geek/Application.hs
+++ b/src/Web/Geek/Application.hs
@@ -251,6 +251,10 @@
     
     -- for angular html5 mode
     get "*" - do
+      io - puts - "serving :" + _config.index_file_path.T.unpack
+      
       _response <- io - serve Nothing (_config.index_file_path.encodeUtf8)
       State.put _response
+      
+      modify - set_content_type "text/html"
   
diff --git a/src/Web/Geek/DefaultConfig.hs b/src/Web/Geek/DefaultConfig.hs
--- a/src/Web/Geek/DefaultConfig.hs
+++ b/src/Web/Geek/DefaultConfig.hs
@@ -27,7 +27,7 @@
   , rss_site_title = "Shinny blog"
   , rss_site_description = ""
   , rss_site_link = "http://localhost:3000"
-  , rss_site_root_prefix = "/#"
+  , rss_site_root_prefix = ""
   }
   where
     _static_serve = 
diff --git a/src/Web/Geek/RSS.hs b/src/Web/Geek/RSS.hs
--- a/src/Web/Geek/RSS.hs
+++ b/src/Web/Geek/RSS.hs
@@ -21,6 +21,7 @@
 import Control.Monad (forM_)
 import System.Locale (defaultTimeLocale)
 import Data.Time (formatTime)
+import Data.Char (isSpace)
 
   {-
   
@@ -65,7 +66,7 @@
           site_link
         , _config.Geek.rss_site_root_prefix.T.unpack.drop_tail_slash.reverse.drop_tail_slash
         ]
-        ).join "/"
+        ).reject (all isSpace).join "/"
         
   xml_header
   
