Thursday 29 May 2003 3:05:47 pm
When I upload the .htacess file via Fetch to my directory foo.com for increased security (as recommended in the installation instructions) I get two errors:
"The server cannot fulfill your request" "the attempt to load "http://www.foo.com failed." When I delete the file I can once again access the site.
Do I need to change the file in some way? Is it insecure to run the site without this file in place? the .htaccess file looks like this:
# Copy this file to a new file called .htaccess in your eZ publish root
# to make the site more secure in non-virtualhost mode (index.php used in urls). #
<FilesMatch ".">
order allow,deny
deny from all </FilesMatch>
<FilesMatch "(index\.php|\.(gif|jpe?g|png))$">
order allow,deny
allow from all </FilesMatch>
RewriteEngine On RewriteRule !\.(gif|css|jpe?g|png|js)$ index.php DirectoryIndex index.php _____________ I have just done a clean install of the 3.1.0 beta (though this happened with the latest 3.0 as well) Thanks for any guidance ;-)
|