我有这样的虚拟主机配置。
<VirtualHost *:443>
ServerName local.website.com
ServerSignature Off
DocumentRoot /var/www/web/public_html/
Alias /jp/ /var/www/web-jp/public_html/
<Directory /var/www/web/public_html/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<Directory /var/www/web-jp/public_html/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
ErrorLog /path/to/error/logs
CustomLog /path/to/access/logs
</VirtualHost>
一旦我重启我的apache,就说好了。
然后,如果我访问默认页面,页面显示正常。
但是当我使用<URL>/jp/
时,它始终只会重定向到<URL>
顺便说一句 我有一个index.php来检查如果URL没有以&#34; index.php&#34;结尾, 它将重定向当前的URL +&#34; index.php&#34;