| | CODE # Rewrite rules for Zend Framework RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteRule .* index.php # Security: Don't allow browsing of directories Options -Indexes # PHP settings php_flag magic_quotes_gpc off php_flag register_globals off php_flag short_open_tag on I'm using this .htaccess in my 'public' folder as instructed but it hides my public folder for some reason. Does anyone know why? This is what has been instructed to be placed in the 'public' folder and when browsed there it should work but it hides my whole public folder. maybe its something to do with my own apache setting? |

