0
:RewriteBase Apache Docsmod_rewriteは `Alias`を自動的に設定しますか、` RewriteBase`を実行するときに明示的に指定する必要がありますか?
# /abc/def/.htaccess -- per-dir config file for directory /abc/def
# Remember: /abc/def is the physical path of /xyz, i.e., the server
# has a 'Alias /xyz /abc/def' directive e.g. #
RewriteEngine On
# let the server know that we were reached via /xyz and not
# via the physical path prefix /abc/def
RewriteBase /xyz
# now the rewriting rules
RewriteRule ^oldstuff\.html$ newstuff.html
は、これらの行ない:
# Remember: /abc/def is the physical path of /xyz, i.e., the server
# has a 'Alias /xyz /abc/def' directive e.g. #
は
のmod_rewriteのセットAlias /xyz /abc/def'
が自動的に.htaccessファイルに基づいて、または、これはconfファイルで明示的に指定することを示していることを意味ですか?