Есть простой скрипт на php test1.php
<?php
echo "OK.";
?>
Настройки apache
Alias "/Service/Activation" "/var/www/html/service"
<Directory /var/www/html/service>
DirectoryIndex test1.php
Require all granted
</Directory>
При переходе по url
10.11.10.11/Service/Activation apache2 отвечает The document has moved и редиректит дописывая "/" в конце строки.
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>301 Moved Permanently</title>
</head><body>
<h1>Moved Permanently</h1>
<p>The document has moved <a href="http://10.11.10.11/Service/Activation/">here</a>.</p>
<hr>
<address>Apache/2.4.25 (Debian) Server at 10.11.10.11 Port 80</address>
</body></html>
Как его отучить от этого редиректа?