我有内部链接,例如:Alamofire.request("<url>", method: .post, parameters: parameters, encoding: JSONEncoding.default){(response:DataResponse<Any>) in
}
如果要输入此链接http://example.com/payment/
,我会收到错误303。
如何为重定向配置http://example.com/payment
?
答案 0 :(得分:1)
将此重定向添加到您的.htaccess
文件中。
这样,您就可以将整个网站重定向到任何其他域
Redirect 303 / http://example.com/payment/
重定向网址:在.htaccess文件中使用重定向可让您将用户从旧页面重定向到新页面,而无需 保留旧页面。例如,如果您使用index.html作为索引 文件,然后将index.html重命名为home.html,你可以设置一个 重定向将用户从index.html发送到home.html。
例如:
Redirect /path/to/old/file/old.html http://www.example.com/new/file/new.html
您可以找到更详细的示例here。