With current apache in trusty-updates:
ubuntu@ubuntu:/etc/apache2$ curl localhost/alias-test/010203040506070809101112
<html>test</html>
ubuntu@ubuntu:/etc/apache2$ curl localhost/alias-test/01020304050607080910111213
curl: (52) Empty reply from server
After update to apache 2.4.7-1ubuntu4.14:
ubuntu@ubuntu:/etc/apache2$ curl localhost/alias-test/010203040506070809101112
<html>test</html>
ubuntu@ubuntu:/etc/apache2$ curl localhost/alias-test/01020304050607080910111213
<html>test</html>
The updated package at version apache_ 2.4.7-1ubuntu4. 14 does fix the issue for me:
/etc/apache2/ sites-available /alias. conf: html/index. html
<VirtualHost *:80>
AliasMatch ^/alias-test/ /var/www/
</VirtualHost>
/var/www/ html/index. html:
<html>test</html>
With current apache in trusty-updates: ubuntu: /etc/apache2$ curl localhost/ alias-test/ 010203040506070 809101112 ubuntu: /etc/apache2$ curl localhost/ alias-test/ 010203040506070 80910111213
ubuntu@
<html>test</html>
ubuntu@
curl: (52) Empty reply from server
After update to apache 2.4.7-1ubuntu4.14: ubuntu: /etc/apache2$ curl localhost/ alias-test/ 010203040506070 809101112 ubuntu: /etc/apache2$ curl localhost/ alias-test/ 010203040506070 80910111213
ubuntu@
<html>test</html>
ubuntu@
<html>test</html>