我尝试建立具有<IfModule mod_rewrite.c>
# Swith to PHP 7.2
AddHandler application/x-httpd-php72 .php
<IfModule mod_negotiation.c>
Options -MultiViews -Indexes
</IfModule>
RewriteEngine On
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
连接的通信客户端服务器。在我使用Python制作的服务器上,客户端使用Angular。但是我对Angular上的TCP/IP
有一些疑问。我不知道如何使用TCP连接,我总是使用TCP client
获得示例。
有人知道如何在Angular 1上使用TCP连接吗?