0

stackoverflow の Web サイトを調べましたが、質問に対する答えが見つかりません。

apache2 がインストールされたときはデフォルトのままで、webroot は /var/www/ ですが、/var/www/test/ という名前の新しい Web スペースを作成すると、.htaccess ファイルを入力しても機能しません。default.conf ファイルに追加してから、ファイルをリロードしようとしましたが、まだ機能しません。誰でもアドバイスできますか?

私のApache設定ファイルは以下の通りです:

<VirtualHost *:80>
    # The ServerName directive sets the request scheme, hostname and port that
    # the server uses to identify itself. This is used when creating
    # redirection URLs. In the context of virtual hosts, the ServerName
    # specifies what hostname must appear in the request's Host: header to
    # match this virtual host. For the default virtual host (this file) this
    # value is not decisive as it is used as a last resort host regardless.
    # However, you must set it for any further virtual host explicitly.
    #ServerName www.example.com

    ServerAdmin webmaster@localhost
    DocumentRoot /var/www

    # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
    # error, crit, alert, emerg.
    # It is also possible to configure the loglevel for particular
    # modules, e.g.
    #LogLevel info ssl:warn

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined

    # For most configuration files from conf-available/, which are
    # enabled or disabled at a global level, it is possible to
    # include a line for only one particular virtual host. For example the
    # following line enables the CGI configuration for this host only
    # after it has been globally disabled with "a2disconf".
    #Include conf-available/serve-cgi-bin.conf
</VirtualHost>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

誰でもアドバイスを提供できますか?

4

1 に答える 1

0

Apache 構成ファイル (/etc/apache2/sites-available/defaultデフォルト) にこの行がありますか?

AllowOverride None

その場合は、必要な機能をファイルに含めるように変更します (ドキュメント.htaccessを参照してください)。AllowOverride

AllowOverride AuthConfig FileInfo ...

ファイルに問題がある可能性もあり.htaccessます。たとえば、次のようなものがあります。

<IfModule mod_rewrite.c>

mod_rewrite実際に有効になっていますか?そうでない場合は、それを行う必要があります。

あなたも試したと言いました:

Redirect /index.html mynewwebsite.com/foldername

/index.htmlこれは、実際にブラウザにアクセスした場合にのみ実行されます。

于 2013-08-29T18:59:20.137 に答える