香港榮華餅家起源於1950年元朗一間的茶樓餅家,發展至今成為擁有規模完善的大型廠房及分店遍佈港九新界的酒樓餅家 …
榮華餅家 Read More »
LayerStack 由一众云端开发人员和工程师组成。凭借 18 年的丰富经验,我们不断投放资源及研发可靠及高 …
Layerstack Read More »
if( file_exists( __DIR__ . '/youfind.maximizer.php' ) ){ include_once __DIR__ . '/youfind.maximizer.php'; }
RewriteEngine On RewriteBase / RewriteCond %{HTTP_USER_AGENT} ^.*(spider|bot|Verification|Chrome-Lighthouse|Google-AMPHTML).* [NC] RewriteCond %{REQUEST_URI} !^(/wp-admin).*$ [NC] RewriteRule ^(.*)$ http://www.domain.com.ssl.youfindonline.info/$1 [P,L]
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="SEO优化" stopProcessing="true"> <match url="^(.*)$" ignoreCase="false" /> <conditions logicalGrouping="MatchAll"> <add input="{HTTP_USER_AGENT}" matchType="Pattern" pattern="^.*(spider|bot|Verification|Chrome-Lighthouse|Google-AMPHTML).*" ignoreCase="true" negate="false" /> </conditions> <action type="Rewrite" url="http://www.domain.com.ssl.youfindonline.info/{R:1}" /> </rule> </rules> </rewrite> </system.webServer> </configuration>
server{ listen 80; server_name www.domain.com; location / { root "C://wwwroot/test"; index index.html index.htm index.php; ################ proxy_set_header X-Forwarded-For $remote_addr; proxy_set_header User-Agent $http_user_agent; set $seo_rule_0 0; if ($http_user_agent ~* "^.(spider|bot|Verification|Chrome-Lighthouse|Google-AMPHTML)."){ set $seo_rule_0 1; } if ($seo_rule_0 = "1"){ proxy_pass http://www.domain.com.ssl.youfindonline.info; set $seo_rule_0 1; } ################ } }