Перейти к публикации

разрешить в настройках использование символических ссылок


Рекомендованные сообщения

777muz.info

Для того, чтобы разрешить в настройках использование символических ссылок нужно параметр AllowOverride None заменить на AllowOverride All и перезапустить сервер. В файле httpd.conf я нашел несколько строк AllowOverride None. Какую из них поменять или все?

DocumentRoot "/data/sites/777muz/htdocs"

# Each directory to which Apache has access, can be configured with respect

# to which services and features are allowed and/or disabled in that

# directory (and its subdirectories).

# First, we configure the "default" to be a very restrictive set of

# permissions.

<Directory />

Options FollowSymLinks

AllowOverride None

</Directory>

<Directory "/data/sites/777muz/htdocs">

# This may also be "None", "All", or any combination of "Indexes",

# "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".

# Note that "MultiViews" must be named *explicitly* --- "Options All"

# doesn't give it to you.

Options Indexes FollowSymLinks MultiViews

# This controls which options the .htaccess files in directories can

# override. Can also be "All", or any combination of "Options", "FileInfo",

# "AuthConfig", and "Limit"

AllowOverride None

# Controls who can get stuff from this server.

Order allow,deny

Allow from all

</Directory>

и еще в других директориях несколько

Ссылка на сообщение
Поделиться на других сайтах

везде поменяйте, это одни и теже настройки, только в первом случае общие, вторые непосредственно для папки /data/sites/777muz/htdocs и так далее

Ссылка на сообщение
Поделиться на других сайтах

везде поменяйте, это одни и теже настройки, только в первом случае общие, вторые непосредственно для папки /data/sites/777muz/htdocs и так далее

спасибо. везде - значит и тут тоже поменять?

<IfModule mod_alias.c>

# Note that if you include a trailing / on fakename then the server will

# require it to be present in the URL. So "/icons" isn't aliased in this

# example, only "/icons/". If the fakename is slash-terminated, then the

# realname must also be slash terminated, and if the fakename omits the

# trailing slash, the realname must also omit it.

Alias /icons/ "/usr/local/www/icons/"

<Directory "/usr/local/www/icons">

Options Indexes MultiViews

AllowOverride None

Order allow,deny

Allow from all

</Directory>

# This Alias will project the on-line documentation tree under /manual/

# even if you change the DocumentRoot. Comment it if you don't want to

# provide access to the on-line documentation.

Alias /manual/ "/usr/local/share/doc/apache/"

<Directory "/usr/local/share/doc/apache">

Options Indexes FollowSymlinks MultiViews

AllowOverride None

Order allow,deny

Allow from all

</Directory>

# ScriptAlias: This controls which directories contain server scripts.

# ScriptAliases are essentially the same as Aliases, except that

# documents in the realname directory are treated as applications and

# run by the server when requested rather than as documents sent to the client.

# The same rules about trailing "/" apply to ScriptAlias directives as to

# Alias.

ScriptAlias /cgi-bin/ "/usr/local/www/cgi-bin/"

# "/usr/local/www/cgi-bin" should be changed to whatever your ScriptAliased

# CGI directory exists, if you have that configured.

<Directory "/usr/local/www/cgi-bin">

AllowOverride None

Options None

Order allow,deny

Allow from all

</Directory>

</IfModule>

Ссылка на сообщение
Поделиться на других сайтах

спасибо. везде - значит и тут тоже поменять?

везде, значит вездде, вы бы давно поменяли и проверили, чем ждать ответов на форуме.

Ссылка на сообщение
Поделиться на других сайтах

Присоединяйтесь к обсуждению

Вы можете опубликовать сообщение сейчас, а зарегистрироваться позже. Если у вас есть аккаунт, войдите в него для написания от своего имени.

Гость
Ответить в тему...

×   Вставлено в виде отформатированного текста.   Вставить в виде обычного текста

  Разрешено не более 75 эмодзи.

×   Ваша ссылка была автоматически встроена.   Отобразить как ссылку

×   Ваш предыдущий контент был восстановлен.   Очистить редактор

×   Вы не можете вставить изображения напрямую. Загрузите или вставьте изображения по ссылке.

×
×
  • Создать...