0
我尝试通过我的网站访问另一个网站。我使用.htaccess重定向代码来做到这一点,但没有完成。如何重定向而不更改链接到另一个链接.htaccess
我想将https://web.karlosms.com重定向到http://36.255.3.40:80而不更改网址。
我试图使用这段代码,但它不工作。
RewriteEngine On
RewriteCond %{HTTP_HOST} ^web.karlosms.com
RewriteRule ^(.*) http://36.255.3.40:80/$1 [P]
它显示错误:
Forbidden
You don't have permission to access /index.html on this server.
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
请帮助我在此。谢谢。
嗨,我的答案有帮助吗?请提供反馈。 – Capsule