Vielen Dank, tschundeee, für die meiner Meinung nach ultimative Antwort auf dieses Problem. Ich wünschte, ich könnte nur einen Kommentar abgeben, aber hier ist die Gesamtkonfiguration für diejenigen, die versuchen, das ursprüngliche Ziel zu erreichen , XAMPP)
hosts-Datei (einen Eintrag hinzufügen)
Datei: / etc / hosts (nicht Windows)
127.0.0.1 example.local
httpd.conf Konfiguration (aktiviere vhosts)
Datei: /XAMPP/etc/httpd.conf
# Virtual hosts
Include etc/extra/httpd-vhosts.conf
Konfiguration von httpd-vhosts.conf
Datei: XAMPP / etc / extra / httpd-vhosts.conf
<VirtualHost *:80>
ServerAdmin admin@example.local
DocumentRoot "/path_to_XAMPP/htdocs"
ServerName example.local
ServerAlias *.example.local
# SetEnv APP_ENVIRONMENT development
# ErrorLog "logs/example.local-error_log"
# CustomLog "logs/example.local-access_log" common
</VirtualHost>
starte Apache neu
pac Datei erstellen:
Speichern Sie die Datei als whatever.pac, wo immer Sie möchten, und laden Sie sie dann im Netzwerk des Browsers> Proxy> Auto_Configuration-Einstellungen (laden Sie sie neu, wenn Sie dies ändern).
function FindProxyForURL(url, host) {
if (shExpMatch(host, "*example.local")) {
return "PROXY example.local";
}
return "DIRECT";
}