Forum: Linux Servers and Apache Jul 13th, 2003 |
| Replies: 11 Views: 10,057 Unfortunately, all rewrite directives can be in the .htaccess except one.
RewriteEngine On must be in the httpd.conf of the server and not in the htaccess. Plus if you use rewrite there will... |
Forum: Linux Servers and Apache Jul 12th, 2003 |
| Replies: 11 Views: 10,057 To prevent viewing of htaccess files use:
<Files .htaccess>
order allow,deny
deny from all
</Files>
and to prevent directory listing try: |