我正在处理使用模板呈现的 Wordpress 页面。页面上有一个指向外部站点上另一个网页的链接(即,它完全位于另一个域中),并且 thios 页面需要登录。对包含该页面的目录的访问由 Web 配置控制,并且仅在成功登录时才起作用。web.config 如下:
<?xml version="1.0"?>
<!--
Note: As an alternative to hand editing this file you can use the
web admin tool to configure settings for your application. Use
the Website->Asp.Net Configuration option in Visual Studio.
A full list of settings and comments can be found in
machine.config.comments usually located in
\Windows\Microsoft.Net\Framework\v2.x\Config
-->
<configuration>
<appSettings/>
<connectionStrings/>
<system.web>
<authorization>
<allow roles="Administrator, Client"/>
<deny users="*"/>
</authorization>
</system.web>
</configuration>
如何修改此内容或在外部站点中进行任何其他更改,以便我的 wordpress 页面上的链接成功地设法访问外部站点,并且我无需登录即可查看该页面(例如对我的请求进行例外处理) wordpress 站点或类似的东西。)我想这样做是因为同一个用户已经登录到我的 wordpress 站点,并且必须再次登录这个外部站点才能查看外部页面。这是可行的吗?
PS:我提到的外部网站是一个基于 ASP.NET 的网站。