阅读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●点击书源文件导入;●导入后返回书源管理界面即可看到海量书源。...
Android中文版下载 密码 b7n5 Android全球畅通无阻免费中文版下载地址(点击下载)密码b7n5 Windows中文版下载 Windows全球畅通无阻免费中文版下载地址(点击下载) 已测试,完全OK 内置代理几十个 ,100ms响应 速度起飞...
<pre class="language-javascript"><code>### nginx location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=/$1 last; break; } } ### apache <IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1] </IfModule> <rule name="OrgPage" stopProcessing="true"> <match url="^(.*)$" /> <conditions logicalGrouping="MatchAll"> <add input="{HTTP_HOST}" pattern="^(.*)$" /> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="index.php/{R:1}" /> </rule> </code></pre> <p> </p> <p>### 跨域</p> <p> </p> <pre class="language-php"><code> ### apache <IfModule mod_headers.c> 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" </IfModule> ### 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"> </pre>...
<pre class="language-java"><code>$url = @$_GET['url']; $url = fix_url($url); $info=@file_get_contents($url); //var_dump($info); preg_match('/<title>(.*?)<\/title>/',$info,$title); preg_match('/name=\"description\" content=\"(.*?)\"/',$info,$description); preg_match('/name=\"keywords\" content=\"(.*?)\"/',$info,$keywords); print_r($title); Array ( [0] => <title>星际导航-人人导航-让人人都有自己的导航网-做所有人的网址之家 - 学习技术 从这里开始</title> [1] => 星际导航-人人导航-让人人都有自己的导航网-做所有人的网址之家 - 学习技术 从这里开始 ) 上面结果 </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 /data1mount /dev/vdb /data1//重启自动挂载echo '/dev/vdb /data1 ext4 defaults 0 0'>> /etc/fstabcat /etc/fstab...
@梦幻书涯:正在实现到导航网中