|
|
|
помогите решить проблему, поставил в корень домена скрипт phpLD.
когда набираю http://mydomain.com/folder/ меня швыряет на 403 стр.
если набираю http://mydomain.com/folder/index.html все работает нормально.
На домене собираюсь постить фрихи
Что тут надо исправить:
# Protect files
<Files ~ "^(.*)\.(inc|inc\.php|tpl|sql)$">
Order deny,allow
Deny from all
</Files>
# Protect directories
<Files ~ "^(files|images|include|lang|libs(/.+)?|temp(/.+)?|templates(/.+)?|javascripts(/.+)?)$">
Order deny,allow
Deny from all
</Files>
# Disable directory browsing
Options -Indexes
# Follow symbolic links in this directory
Options +FollowSymLinks
# Set the default handler
DirectoryIndex index.php
# URL rewrite rules
<IfModule mod_rewrite.c>
RewriteEngine On
## Category redirect
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
Если нетрудно подскажите |
|
|
|
|
|
пробуй:
# Set the default handler
DirectoryIndex index.php
-->
# Set the default handler
DirectoryIndex index.html |
|
|
|
|
|
+ вразумееться файл index.html должен там существовать... |
|
|
|
|
|
Спасибо большое IseeDeadPeople!
залил в папку с фрихами
# Set the default handler
DirectoryIndex index.html
# URL rewrite rules
<IfModule mod_rewrite.c>
RewriteEngine On
Все заработало как хотел
|
|
|
|
|
|