# FAQ

## 这是什么？

这是首个 clash on iOS 的公开版本。

完全基于原生 clash 开发，并针对 iOS 使用场景进行深度适配 - 并非 **兼容** clash 配置。

您可以用这个软件完成所有 clash 能做的事情，并且同时可以使用 iOS 版本独有的特性。

## clash 是什么？

下一个问题。

## 如何使用？

添加符合 clash 格式的配置文件后点击启动按钮。

## 如何添加配置文件？

参考：<https://choc.watfaq.com/basic-usage/remote-config>

## 和其他软件相比哪个快？

不一定。

## 能替代其他软件吗？

请看第一个问题。

## 如何实现 Safari 搜索跳转到 Google.com ？

参考配置片段：

```yaml
- regex: ^http://www.google.cn
  match: url
  action: "header"  # rewrite request header Host
  target: http://www.google.com
```

或者：

```yaml
- regex: ^https?://www.google.cn/(.*)
  match: url
  action: "302"
  target: https://www.google.com/$1  # redirect with params
```

## 为什么主页没有显示订阅用量信息？

显示订阅信息需要订阅的 URL 在返回的数据中包含该订阅的使用情况。

如您的订阅在使用订阅转换后无法显示用量信息，可在配置文件第一行加入以下配置：

```
### subscription-url = 替换为你自己的订阅地址
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://choc.watfaq.com/help/faq.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
