梦幻书涯 - 莫問前路遙遠- 與君風雪
X  
登录

还没有账号? 立即注册

忘记密码?
登陆
X  
注册

已经有账号? 马上登陆

获取验证码
重新获取(60s)
立即注册
统计
  • 建站日期:22-09:01
  • 文章总数:80 篇
  • 评论总数:2 条
  • 分类总数:8 个
  • 最后更新:2024年07月05日
阅读3.0永无广告自带1300书源,看小说永无忧

阅读3.0让你小说永无忧   书源地址:http://dhw.wchulian.com.cn/fileupload/bookSource.json   下载地址: https://wwc.lanzoul.com/iK5cj0bwopgj密码:593o 软件特点 1、自定义书源,自己设置规则,抓取网页数据,规则简单易懂,软件内有规则说明2、书源规则支持搜索及发现,所有找书看书功能全部自定义,找书更方便3、支持高度自定义阅读界面,切换字体、颜色、背景、行距、段距、加粗、简繁转换等4、支持替换净化,去除广告替换内容很方便5、支持本地TXT、EPUB阅读,手动浏览,智能扫描6、支持多种翻页模式,覆盖、仿真、滑动、滚动等 使用说明 1、开源阅读3.0导入书源●打开阅读软件;●我的-点击"书源管理”;●点击右上角选择“网络导入”; 书源链接http://dhw.wchulian.com.cn/fileupload/bookSource.json●点击书源文件导入;●导入后返回书源管理界面即可看到海量书源。...

PHP伪静态和跨域

<pre class="language-javascript"><code>### nginx location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=/$1 last; break; } } ### apache &lt;IfModule mod_rewrite.c&gt; Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1] &lt;/IfModule&gt; &lt;rule name="OrgPage" stopProcessing="true"&gt; &lt;match url="^(.*)$" /&gt; &lt;conditions logicalGrouping="MatchAll"&gt; &lt;add input="{HTTP_HOST}" pattern="^(.*)$" /&gt; &lt;add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /&gt; &lt;add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /&gt; &lt;/conditions&gt; &lt;action type="Rewrite" url="index.php/{R:1}" /&gt; &lt;/rule&gt; </code></pre> <p>&nbsp;</p> <p>### 跨域</p> <p>&nbsp;</p> <pre class="language-php"><code> ### apache &lt;IfModule mod_headers.c&gt; Header always add Access-Control-Allow-Origin: "*" Header always add Access-Control-Allow-Methods: "GET,POST,PUT,DELETE,HEAD,OPTIONS" Header always add Access-Control-Max-Age: "1000" Header always add Access-Control-Allow-Credentials: "true" Header always add Access-Control-Allow-Headers: "Origin, X-Requested-With, Content-Type, Accept, token, platform" &lt;/IfModule&gt; ### nginx add_header 'Access-Control-Allow-Origin' '*' always; add_header 'Access-Control-Allow-Credentials' 'true' always; add_header 'Access-Control-Allow-Headers' 'Origin, X-Requested-With, Content-Type, Accept, token, platform' always; add_header 'Access-Control-Allow-Methods' 'GET,POST,PUT,DELETE,HEAD,OPTIONS' always; if ($request_method = OPTIONS ) { return 200; } </code></pre> <pre class="md-fences md-end-block ty-contain-cm modeLoaded md-focus" lang="" spellcheck="false">&nbsp;</pre>...

PHP爬虫代码展示

<pre class="language-java"><code>$url = @$_GET['url']; $url = fix_url($url); $info=@file_get_contents($url); //var_dump($info); preg_match('/&lt;title&gt;(.*?)&lt;\/title&gt;/',$info,$title); preg_match('/name=\"description\" content=\"(.*?)\"/',$info,$description); preg_match('/name=\"keywords\" content=\"(.*?)\"/',$info,$keywords); print_r($title); Array ( [0] =&gt; &lt;title&gt;星际导航-人人导航-让人人都有自己的导航网-做所有人的网址之家 - 学习技术 从这里开始&lt;/title&gt; [1] =&gt; 星际导航-人人导航-让人人都有自己的导航网-做所有人的网址之家 - 学习技术 从这里开始 ) 上面结果 </code></pre>...

每日随机一文

不跨域情况: const getParentUrlInIfram = () => {   if(window.parent !== window.self) { //判断是否存在iframe       window.top.location.href = '/' // 只有一层iframe时有效       // 或       window.parent.location.href = '/'   }} 跨域情况,无解。只能间接的修改子页面URL模拟修改父页面URL const getParentUrlInIfram = () => {   if(window.parent !== window.self) { //判断是否存在iframe       window.top.location.href = '//localhost:8080/' // 只有一层iframe时有效       // 或       window.parent.location.href = '//localhost:8080/'   }} 另外,跨域时可获取父页面URL const getParentUrlInIfram = () => {   if(window.parent !== window.self) { //判断是否存在iframe       return document.referrer   }} fdisk -l ​df -h 查看硬盘挂载情况​mkfs.ext4 /dev/vdb 格式化未挂载硬盘 只有格式化才能挂载​mkdir /data1​mount /dev/vdb /data1//重启自动挂载echo '/dev/vdb /data1 ext4 defaults 0 0'>> /etc/fstab​cat /etc/fstab...

个人信息

梦幻书涯
星际导航

热门文章

1
2
3
4
推荐专区