2013-11-07, 00:03:08
(2013-10-31, 20:38:20)Kolyok Wrote: [...]
(2013-10-31, 20:36:14)Kolyok Wrote: [...]
3. Manually modify all the .htaccess files to fit the new directives (check below the documentation)
Note: Apache 2.4 normally should have the new module mod_access_compat for backwards compatibility, check your Apache 2.4 install if you have it.
[...]
Hello,
this is the .htaccess file on my webserver:
Code:
AddDefaultCharset UTF-8
Options -Indexes
# blocks direct access to the XML files - they hold all the data!
<Files ~ "\.xml$">
Order allow,deny
Deny from all
Satisfy All
</Files>
<Files sitemap.xml>
Order allow,deny
Allow from all
Satisfy All
</Files>
RewriteEngine on
# Usually it RewriteBase is just '/', but
# replace it with your subdirectory path
RewriteBase /finetoilets/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /?([A-Za-z0-9_-]+)/?$ index.php?id=$1 [QSA,L]
My webserver Apache version: "Apache/2.4.6 (Unix) mod_fcgid/2.3.7"
does it mean something to you?
many thanks
Vito