2016-03-20 5 views
0

Axureがhtml(いくつかのjavascript、css、htmlファイル - すべての静的コンテンツ)を自分のwordpressサイトにアップロードします。 今、私は単にftpに接続し、そのフォルダをホストされたドライブにアップロードすることができます。しかし、私はそれが望ましい方法であるかどうか、どのセキュリティ問題が解決するのか(htaccessファイル??)、フレーム内の私のAxureで作成したモックアップにリンクする方法(動的にサイズ変更する)Axureがhtmlをhtmlにエクスポートしました

私は、不可能な、悪い習慣を試しています...私はPHPに触れる必要がありますか?私のウェブの知識がjs/css ... newbieにまで及ぶからです。

ヘルプ?

ありがとうございます!

答えて

1

セキュリティ上の問題はなく、htaccessファイルに触れる必要があります。 http://paulsizemore.com/4234-2/

は基本的に、あなたはWordpressのコンテンツエディタでスクリプトファイルへの参照を追加する必要があります。

私は共有してWordpressの中に埋め込んだワイヤーフレームのサンプルがです。タグのhref属性にWebアドレスを追加する必要があります。

The Wordpress Content Editor View

<meta name="apple-mobile-web-app-capable" content="yes" /> 
 
<link href="http://r4qr5p.axshare.com/resources/css/jquery-ui-themes.css" type="text/css" rel="stylesheet"> 
 
<link href="http://r4qr5p.axshare.com/resources/css/axure_rp_page.css" type="text/css" rel="stylesheet"> 
 
<link href="http://r4qr5p.axshare.com/LogIn_files/axurerp_pagespecificstyles.css" type="text/css" rel="stylesheet"> 
 
<!--[if IE 6]> 
 
    <link href="http://r4qr5p.axshare.com/LogIn_files/axurerp_pagespecificstyles_ie6.css" type="text/css" rel="stylesheet"> 
 
<![endif]--> 
 
<script type="text/javascript"> 
 
    AXSHARE_HOST_URL = 'http://share.axure.com'; 
 
    AXSHARE_HOST_SECURE_URL = 'https://share.axure.com'; 
 
</script> 
 
<script src="http://r4qr5p.axshare.com/data/sitemap.js"></script> 
 
<script src="http://r4qr5p.axshare.com/resources/scripts/jquery-1.7.1.min.js"></script> 
 
<script src="http://r4qr5p.axshare.com/resources/scripts/axutils.js"></script> 
 
<script src="http://r4qr5p.axshare.com/resources/scripts/jquery-ui-1.8.10.custom.min.js"></script> 
 
<script src="http://r4qr5p.axshare.com/resources/scripts/axurerp_beforepagescript.js"></script> 
 
<script src="http://r4qr5p.axshare.com/resources/scripts/messagecenter.js"></script> 
 
<script src='http://r4qr5p.axshare.com/LogIn_files/data.js'></script> 
 

 
<!-- This is the iframe of the Axure Share URL --> 
 
<iframe src="http://r4qr5p.axshare.com/" width="800"></iframe>

関連する問題