發(fā)現(xiàn)現(xiàn)在所有大型站點都301到www域名上,主機大師現(xiàn)在只支持兩個站之間301重定向,也就是說20個站重定向要做40個站,服務器吃不消,而且根本也沒辦法管理,一般都是一個站都是綁定www和 @兩個域名,希望控制面板支持一鍵實現(xiàn)@到 WWW或者 WWW到@重定向
您好,可以采用以下辦法:一,在網(wǎng)站中正常綁定完所有的域名;二,在網(wǎng)站根目錄下創(chuàng)建文件web.config添加內(nèi)容如下(把域名換為您的域名):<?xml version="1.0" encoding="UTF-8"?><configuration> <system.webServer> <rewrite> <rules> <rule name="hws.com301" stopProcessing="true"> <match url="(.*)" /> <conditions> <add input="{HTTP_HOST}" pattern="^hws.com" /> </conditions> <action type="Redirect" url="http://smartrecovery.cn/{R:0}" /> </rule> </rules> </rewrite> </system.webServer></configuration>
您好,如果方便,請?zhí)峁┓掌鞯卿浶畔?,QQ3007358068
根據(jù)你提供的規(guī)則文件,完整的文件如下:注意把網(wǎng)址改為你自己的網(wǎng)址
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="/ Z-BlogPHP Imported Rule" stopProcessing="true"> <match url="^.*?" ignoreCase="false" /> <conditions logicalGrouping="MatchAll"> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="index.php/{R:0}" /> </rule> <rule name="/ Z-BlogPHP Imported Rule index.php" stopProcessing="true"> <match url="^index.php/.*?" ignoreCase="false" /> <conditions logicalGrouping="MatchAll"> <add input="{REQUEST_FILENAME}" matchType="IsFile" /> </conditions> <action type="Rewrite" url="index.php/{R:0}" /> </rule> <rule name="hws.com301" stopProcessing="true"> <match url="(.*)" /> <conditions> <add input="{HTTP_HOST}" pattern="^hws.com" /> </conditions> <action type="Redirect" url="http://smartrecovery.cn/{R:0}" /> </rule> </rules> </rewrite> </system.webServer> </configuration>