Как описано в этот блог Я хочу переписать внутри
http://xy.user.phpfarm.lan -> http://user.phpfarm.lan/~xy/
Модуль userdir включен.
В следующем конфигурационном файле Apache2 vhost обнаружена ошибка:
/ etc / apache2 / с поддержкой сайтов / phpfarm:
<Virtualhost *:80>
ServerAdmin root@localhost
ServerName em-sv-phpfarm.lan
ServerAlias *.user.phpfarm.lan user.phpfarm.lan phpfarm.lan
DocumentRoot /var/www/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
RewriteLog "/tmp/rewrites"
RewriteLogLevel 5
# Uncomment the above two lines and watch /tmp for some debug info.
RewriteEngine On
# Make bob.user.phpfarm.em.lan be treated as user.phpfarm.lan/~bob
RewriteCond %{HTTP_HOST} ([^.]+)\.user\.phpfarm\.lan$ [NC]
# In the above line make sure you escape (preceed with a backslash) every period (.) in the address.
RewriteCond %{REQUEST_URI} !^[^/]+/~.*$
# exclude file handler
RewriteCond %{REQUEST_URI} !^/php-fcgi/.*$
RewriteRule ^/([^~]+) /~%1/$1 [PT,L]
</virtualhost>
Поэтому я думаю, что пустой REQUEST_URI не захватывается правильно. Но я не могу найти ошибку. Кто-нибудь знает, почему?
Попробуйте заменить последнюю строку на
RewriteRule ^/([^~]*) /~%1/$1 [PT,L]
Вы настаивали на наличии хотя бы одного символа после косой черты, поэтому случаи, когда REQUEST_URI
был /
игнорировались.
Да будь в порядке: ты должен измениться AllowOverride None
к AllowOverride All