我想在Web浏览器上隐藏完整的>>> import fabric
>>> res = fabric.ThreadingGroup('test1', 'test2').run('uptime')
04:14:04 up 1 day, 16:20, 0 users, load average: 0.00, 0.00, 0.00
04:14:05 up 2 days, 1:55, 0 users, load average: 0.00, 0.00, 0.00
>>> res
{<Connection host=test1>: <Result cmd='uptime' exited=0>, <Connection host=test2>: <Result cmd='uptime' exited=0>}
>>> for i in res:
... print(i.host)
...
test1
test2
路径。
例如
如果用户尝试连接到“ http://192.168.0.2/content/1.html ”, 我只想向像{strong>“ http://192.168.0.2/”“
这样的用户显示URL
我听说可以通过host address
中的RewriteRule
解决此问题,但是该怎么做呢?