... плакали, но продолжали есть .... гвозди и кнопки.
Может возмёте у провайдера статический ИП? Или надо по максимуму навариваться и по минимуму расходы?
Хочется тупо послать Вам денег, немного, ибо столько извратов на один кв. см.!
Код: Выделить всё
<?php
if (file_exists(dirname(__FILE__) . '/index_custom.php')) {
include_once(dirname(__FILE__) . '/index_custom.php');
} else {
header('Location: /admin');
}
Код: Выделить всё
################# Named VirtualHosts
<VirtualHost *:80>
ServerName freepbx
ServerAlias freepbx
ServerAdmin yourname@yourdomain.com
ErrorLog /var/log/apache2/freepbx.error.log
CustomLog /var/log/apache2/freepbx.access.log combined
DocumentRoot /var/www/freepbx
<Directory /var/www/freepbx>
Options Indexes FollowSymLinks MultiViews
Order allow,deny
AllowOverride All
Allow from all
</Directory>
<Directory /var/www/freepbx/admin>
AuthType Basic
AuthName "Restricted Area"
AuthUserFile freepbx-passwd
Require user admin
</Directory>
</VirtualHost>
##################################################################