httpsのページ内のiframeでhttpが指定してあると表示されない。
「//」のようにプロトコルが省略されてい場合httpとして扱われる。
明示的に「https://」と変更する事で、httpsページ内でも表示されるようになる。
perl -p -i -e 's#src="//#src="https://#g' *.txt perl -p -i -e 's#src="http://#src="https://#g' *.txt
<script async src="https:/...
<script src="https://
pukiwiki v1.5.3で対応:
<table border="0" style="width:100%; table-layout: fixed;"> <tr> <td class="menubar"> <div id="menubar"><?php echo do_plugin_convert('menu') ?></div> </td> <td valign="top"> <div id="body"><?php echo $body ?></div> </td> <!-- 右側に広告追加 --> <td style="width:160px; vertical-align:top;"> <div> <!-- Google AdSense のスクリプトを貼る --> </div> </td> <!-- /右側に広告追加 --> </tr> </table>
# land.to 広告自動挿入停止 LayoutIgnoreURI *.html LayoutIgnoreURI *.php
<table border="0" style="width:100%"> <tr> <td class="menubar"> <div id="menubar"><?php echo do_plugin_convert('menu') ?></div> </td> <td valign="top"> <div id="body"><?php echo $body ?></div> </td> <!-- 右側に広告追加 --> <td style="width:120px; vertical-align:top;"> <div> <?php include 'http://ad.land.to/ad/adpc120x600.p?ua=' . urlencode($_SERVER["HTTP_USER_AGENT"]); ?> </div> </td> <!-- /右側に広告追加 --> </tr> </table>