学习下meta标签http-equiv=”Content-Security-Policy”的属性及其作用
本文章向大家介绍学习下meta标签http-equiv=”Content-Security-Policy”的属性及其作用吧,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下 …
浏览标签
本文章向大家介绍学习下meta标签http-equiv=”Content-Security-Policy”的属性及其作用吧,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下 …
问题截图 问题分析 今天,多个接口突然出现 block:mixed-content 错误,于是排查了一下发现: 错误:https页面去发送http请求报错(浏览器阻止https发送http请求) 原来是由于项目改成了https协议的缘故,出 …
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
[ISAPI_Rewrite] # Defend your computer from some worm attacks #RewriteRule .*(?:global.asa|default.ida|root.exe|..).* . [F,I,O] # 3600 = 1 hour CacheClockRate 3600 RepeatLimit 32 # Protect httpd.ini and httpd.parse.errors files # from accessing through HTTP # Rules to ensure that normal content gets through RewriteRule /software-files/(.*) /software-files/$1 [L] RewriteRule /images/(.*) /images/$1 [L] RewriteRule /sitemap.xml /sitemap.xml [L] RewriteRule /favicon.ico /favicon.ico [L] # For file-based wordpress content (i.e. theme), admin, etc. RewriteRule /wp-(.*) /wp-$1 [L] # For normal wordpress content, via index.php RewriteRule ^/$ /index.php [L] RewriteRule /(.*) /index.php/$1 [L] |
保存为httpd.ini,传到web目录,然后在固定链接中设置为自己想要的就可以了
效果图
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
<pre class="inline:true class:language-html decode:1 " ><!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <!--验证码--> <script language="javascript" type="text/javascript"> var code; function createCode() { //函数体 code = ""; var codeLength = 5; //验证码的长度 var checkCode = document.getElementById("checkCode"); var codeChars = new Array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'); //所有候选组成验证码的字符,当然也可以用中文的 for (var i = 0; i < codeLength; i++) { var charNum = Math.floor(Math.random() * 52);//设置随机产生 code += codeChars[charNum]; } if (checkCode) { checkCode.className = "code"; checkCode.innerHTML = code; } } </script> </head> <style> /*验证码*/ .code { background-color: silver; font-family:Arial; /*设置字体*/ font-style:initial; color:brown; font-size:20px; border:0; padding:2px 3px; letter-spacing:3px; font-weight:bolder; width:81px; height:23px; margin-left: 120px; margin-top: -35px; } a { text-decoration:none; font-size:12px; color:#288bc4; } a:hover { text-decoration:underline; } .yz{ position: absolute; margin-left: 220px; margin-top:-10px; } </style> <body onload="createCode()"><!--在页面加载的同时要加载验证码,否则页面加载完后验证码不会显示 --> <p> <label> 验证码:</label> <div class="code" id="checkCode" onclick="createCode()" ></div><a class="yz" href="#" onclick="createCode()">看不清换一张</a> </p> <p> <label>请输入验证码:</label><input id="YZ" name="yz" width="30px;"> </p> <input class="btttom" type="button" name="OK" id="OK" onclick="GetDom()" value="确认"/> </body> <!--验证--> <script> function GetDom(){ if(document.getElementById("YZ").value==""){ alert("验证码不能为空!"); createCode();//输错一次或提交一次都将会刷新一次验证码 return false; //结束本次会话 }else if(document.getElementById("YZ").value.toUpperCase()!=code.toUpperCase()){ //toUpperCase不区分大小写 alert("您输入的验证码有误,请重新输入!!"); createCode();//读取文件 } else{ alert("ok"); } } </script> </html> |
很多朋友开始接触wordpress都是在本地安装调试好了,再上传到服务器正常运营,我也是一样当我在本地测试好了准备将网站上线,在搬家到服务器的时候遇到过的一些问题,记录分享一下我是如何为wordpress如何 …