重要:このページには、クッキーを使用しています (cookies). ブラウザでクッキーをオフにせずにこのウェブサイトを使用して、あなたがそれを使用するために同意することを意味します。
今すぐ購入! 機能 ダウンロード

私達と稼ぐ!

他の言語に参加するとお金を稼ぐを開始したい場合 アフィリ エイト プログラム。
ページ 14 123 ... 最後のLast
結果 1 への 1032

スレッド: フラグのURLが間違っています

  1. #1

    Default フラグのURLが間違っています

    私が入力した場合
    PHP Code:
    www.xxxxxx.com/forum/de
    手動でブラウザのアドレスバーとヒットにすべてが良いです入力してください。しかし私はそれを開くためにbtriesというドイツのフラグを有効にして、ヒットしたとき
    PHP Code:
    www.xxxxxx.com/de/forum
    任意のアイデア?
    で最後に編集 norku; 05-04-1117:21.

  2. #2
    vBulletinエンタープライズトランスレータ(vBET)スタッフ
    日時
    2010年5月
    投稿
    1,000

    Default

    私はあなたにいくつか質問があります。
    1。なぜあなたはvBSEOためにこの変更を作ったのですか?ここで説明:
    #post7479をhttp://www.vbenterprisetranslator.co....html
    2。あなたは、で。htaccessファイルを作る場合 /フォーラム 良いことではないのだろうか?
    3。 。今htaccessの上であなたがvBETルールの2つのグループがあるため、このリンクがあります。
    - メインページを翻訳する
    - フォーラムを翻訳する

    多分私達は2つ。htaccessファイルを作るには?あなたの古いもので、2番目のように一つ /フォーラム フォルダ?

    あなたはそれを試すことができます。
    最初のhtaccessファイルは、(古い)フォーラムのフォルダの外側に配置:
    Code:
    # Comment the following line (add '#' at the beginning)
    # to disable mod_rewrite functions.
    # Please note: you still need to disable the hack in
    # the vBSEO control panel to stop url rewrites.
    RewriteEngine On
    
    # Some servers require the Rewritebase directive to be
    # enabled (remove '#' at the beginning to activate)
    # Please note: when enabled, you must include the path
    # to your root vB folder (i.e. RewriteBase /forums/)
    #RewriteBase /
    
    
    #RewriteCond %{HTTP_HOST} !^www\.hj-research\.com
    RewriteCond %{HTTP_HOST} !(^www\.hj-research\.com$|^cdn\.hj-research\.com$)
    RewriteRule (.*) http://www.hj-research.com/$1 [R=301,L]
    
    #RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com
    #RewriteRule (.*) http://www.yourdomain.com/forum/$1 [L,R=301]
    
    RewriteRule ^forum/((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ forum/vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
    
    #vbet translator rules start
    #vbet outside site
    RewriteRule ^/?(af|sq|ar|be|bg|ca|zh-CN|hr|cs|da|nl|en|et|tl|fi|fr|gl|de|el|iw|hi|hu|is|id|ga|it|ja|ko|lv|lt|mk|ms|mt|no|fa|pl|pt|ro|ru|sr|sk|sl|es|sw|sv|zh-TW|th|tr|uk|vi|cy|yi)/$ index.php?language=$1&vbet_outside=true [L,QSA]
    RewriteRule ^/?(af|sq|ar|be|bg|ca|zh-CN|hr|cs|da|nl|en|et|tl|fi|fr|gl|de|el|iw|hi|hu|is|id|ga|it|ja|ko|lv|lt|mk|ms|mt|no|fa|pl|pt|ro|ru|sr|sk|sl|es|sw|sv|zh-TW|th|tr|uk|vi|cy|yi)/(.*)?$ $2?language=$1&vbet_outside=true [L,QSA]
    
    RewriteCond %{QUERY_STRING} !vbet_outside=true
    RewriteRule ^(.*)$ $1?vbet_outside=true [L,QSA]
    
    
    
    #vbet translator rules end
    
    
    RewriteCond %{REQUEST_URI} !(media/|admincp/|modcp/|cron|vbseo_sitemap)
    RewriteRule ^forum/((archive/)?(.*\.php(/.*)?))$ forum/vbseo.php [L,QSA]
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !/(media|admincp|modcp|clientscript|cpstyles|images)/
    RewriteRule ^(.+)$ forum/vbseo.php [L,QSA]
    
    ## Expires
    <ifModule mod_expires.c>
    	ExpiresActive On
    	ExpiresDefault "access plus 1 seconds"
    	ExpiresByType text/html "access plus 1 seconds"
    	ExpiresByType image/gif "access plus 3456000 seconds"
    	ExpiresByType image/jpeg "access plus 3456000 seconds"
    	ExpiresByType image/png "access plus 3456000 seconds"
    	ExpiresByType text/css "access plus 3456000 seconds"
    	ExpiresByType text/javascript "access plus 3456000 seconds"
    	ExpiresByType application/javascript "access plus 3456000 seconds"
    	ExpiresByType application/x-javascript "access plus 3456000 seconds"
    </ifModule>
    
    ## Compression
    <ifmodule mod_headers.c>
    	<ifmodule mod_deflate.c>
    		AddOutputFilterByType DEFLATE text/html text/css text/xml application/x-javascript
    		BrowserMatch ^Mozilla/4 gzip-only-text/html
    		BrowserMatch ^Mozilla/4\.0[678] no-gzip
    		BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
    	</ifmodule>
    </ifmodule>
    
    #Remove index.php from hj-research.com/index.php
    #rewrite engine on 
    RewriteCond %{THE_REQUEST} index\.php
    RewriteCond %{QUERY_STRING} ^$
    RewriteRule ^index\.php$ / [L,R=301]
    のと第二 /フォーラム フォルダー (vBET ルールのみ):
    Code:
    # Comment the following line (add '#' at the beginning)
    # to disable mod_rewrite functions.
    # Please note: you still need to disable the hack in
    # the vBSEO control panel to stop url rewrites.
    RewriteEngine On
    
    
    RewriteRule ^/?(af|sq|ar|hy|az|eu|be|bg|ca|zh-CN|hr|cs|da|nl|en|et|tl|fi|fr|gl|ka|de|el|ht|iw|hi|hu|is|id|ga|it|ja|ko|lv|lt|mk|ms|mt|no|fa|pl|pt|ro|ru|sr|sk|sl|es|sw|sv|zh-TW|th|tr|uk|ur|vi|cy|yi)/$ vbenterprisetranslator_seo.php?vbet_lang=$1&redirected=/ [L,QSA]
    RewriteRule ^/?(af|sq|ar|hy|az|eu|be|bg|ca|zh-CN|hr|cs|da|nl|en|et|tl|fi|fr|gl|ka|de|el|ht|iw|hi|hu|is|id|ga|it|ja|ko|lv|lt|mk|ms|mt|no|fa|pl|pt|ro|ru|sr|sk|sl|es|sw|sv|zh-TW|th|tr|uk|ur|vi|cy|yi)/(.*)?$ vbenterprisetranslator_seo.php?vbet_lang=$1&redirected=/$2 [L,QSA]
    
    RewriteCond %{REQUEST_URI} !(admincp/|modcp/|vbseo_sitemap/|cron)
    RewriteRule ^((archive/)?(.*.php(/.*)?))$ vbenterprisetranslator_seo.php [L,QSA]
    
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images)/
    RewriteRule ^(.+)$ vbenterprisetranslator_seo.php [L,QSA]
    
    
    
    #vbet translator rules end
    あなたはそれをテストすることができますか?私は結論を待っています。それでもない場合 - DELETEの。htaccessファイルを/フォーラムのフォルダから (この htaccess を vBET フォーラムに最適、メインページのためのない仕事働くので) 古い .htaccess がこの 1 つを置き換えます。
    Code:
    # Comment the following line (add '#' at the beginning)
    # to disable mod_rewrite functions.
    # Please note: you still need to disable the hack in
    # the vBSEO control panel to stop url rewrites.
    RewriteEngine On
    
    # Some servers require the Rewritebase directive to be
    # enabled (remove '#' at the beginning to activate)
    # Please note: when enabled, you must include the path
    # to your root vB folder (i.e. RewriteBase /forums/)
    #RewriteBase /
    
    
    #RewriteCond %{HTTP_HOST} !^www\.hj-research\.com
    RewriteCond %{HTTP_HOST} !(^www\.hj-research\.com$|^cdn\.hj-research\.com$)
    RewriteRule (.*) http://www.hj-research.com/$1 [R=301,L]
    
    #RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com
    #RewriteRule (.*) http://www.yourdomain.com/forum/$1 [L,R=301]
    
    RewriteRule ^forum/((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ forum/vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
    
    #vbet translator rules start
    
    RewriteRule ^forum/?(af|sq|ar|hy|az|eu|be|bg|ca|zh-CN|hr|cs|da|nl|en|et|tl|fi|fr|gl|ka|de|el|ht|iw|hi|hu|is|id|ga|it|ja|ko|lv|lt|mk|ms|mt|no|fa|pl|pt|ro|ru|sr|sk|sl|es|sw|sv|zh-TW|th|tr|uk|ur|vi|cy|yi)/$ forum/vbenterprisetranslator_seo.php?vbet_lang=$1&redirected=/ [L,QSA]
    RewriteRule ^forum/?(af|sq|ar|hy|az|eu|be|bg|ca|zh-CN|hr|cs|da|nl|en|et|tl|fi|fr|gl|ka|de|el|ht|iw|hi|hu|is|id|ga|it|ja|ko|lv|lt|mk|ms|mt|no|fa|pl|pt|ro|ru|sr|sk|sl|es|sw|sv|zh-TW|th|tr|uk|ur|vi|cy|yi)/(.*)?$ forum/vbenterprisetranslator_seo.php?vbet_lang=$1&redirected=/$2 [L,QSA]
    
    RewriteCond %{REQUEST_URI} !(admincp/|modcp/|vbseo_sitemap/|cron)
    RewriteRule ^forum/((archive/)?(.*.php(/.*)?))$ forum/vbenterprisetranslator_seo.php [L,QSA]
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images)/
    RewriteRule ^(.+)$ forum/vbenterprisetranslator_seo.php [L,QSA]
    
    #vbet translator rules end
    
    
    RewriteCond %{REQUEST_URI} !(media/|admincp/|modcp/|cron|vbseo_sitemap)
    RewriteRule ^forum/((archive/)?(.*\.php(/.*)?))$ forum/vbseo.php [L,QSA]
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !/(media|admincp|modcp|clientscript|cpstyles|images)/
    RewriteRule ^(.+)$ forum/vbseo.php [L,QSA]
    
    ## Expires
    <ifModule mod_expires.c>
    	ExpiresActive On
    	ExpiresDefault "access plus 1 seconds"
    	ExpiresByType text/html "access plus 1 seconds"
    	ExpiresByType image/gif "access plus 3456000 seconds"
    	ExpiresByType image/jpeg "access plus 3456000 seconds"
    	ExpiresByType image/png "access plus 3456000 seconds"
    	ExpiresByType text/css "access plus 3456000 seconds"
    	ExpiresByType text/javascript "access plus 3456000 seconds"
    	ExpiresByType application/javascript "access plus 3456000 seconds"
    	ExpiresByType application/x-javascript "access plus 3456000 seconds"
    </ifModule>
    
    ## Compression
    <ifmodule mod_headers.c>
    	<ifmodule mod_deflate.c>
    		AddOutputFilterByType DEFLATE text/html text/css text/xml application/x-javascript
    		BrowserMatch ^Mozilla/4 gzip-only-text/html
    		BrowserMatch ^Mozilla/4\.0[678] no-gzip
    		BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
    	</ifmodule>
    </ifmodule>
    
    #Remove index.php from hj-research.com/index.php
    #rewrite engine on 
    RewriteCond %{THE_REQUEST} index\.php
    RewriteCond %{QUERY_STRING} ^$
    RewriteRule ^index\.php$ / [L,R=301]

  3. #3

    Default

    こんにちは、

    私は今、この中に見ていきます。おかげ。あなたは、正確にこれらのhtaccessファイルは何をすべきか説明できますか?
    で最後に編集 norku; 10-03-1111:05.

  4. #4
    vBulletinエンタープライズトランスレータ(vBET)スタッフ
    日時
    2010年5月
    投稿
    1,000

    Default

    、PMを確認してください。

    あなたが悪い。htaccessを行った。
    あなたは、ファイルの末尾にvBETのルールを貼り付け!それは悪かった - 私のprevioust後からのようにhtaccessファイルを作成してください

  5. #5

    Default

    私はしませんでした。私はそれらを削除。私は今、上記のポストからあなたのhtaccessファイルをアップロードし、サーバーエラーが今修正されています。私は以前に気づいたサイトマップに問題があります。彼らはGoogleで見つけることができません

  6. #6
    vBulletinエンタープライズトランスレータ(vBET)スタッフ
    日時
    2010年5月
    投稿
    1,000

    Default

    できればしてください - 私の質問に一つ一つに答えて - 最善の解決策を見つけることは容易になります。
    #post7535をhttp://www.vbenterprisetranslator.co....html

  7. #7

    Default

    私は変更を加えました こちら 私は vb スイートのルートに移動することなくがより一貫性のある構造を望んでいた。それはうまく働きますが vbet と明確に問題フォーラム私の構成がある場合。


    vbetを有効にして私は現在、次の問題を見ています:

    1。私はフォーラム(/デ/フォーラムのバージョン)で検索を実行するとき、外国の文字は認識されません。デュッセルドルフをもう一度検索してください。いいえ、私はフォーラムの結果を持っていても得られません。単語"デュッセルドルフ"が検索ページに返される方法を見てください。私はフォーラムの英語(デフォルト)バージョンに移動し、同じ検索を実行した場合、私は正しい結果を得る。

    2。これは、Googleのインデックスに現在ある。 http://ww 私のフォーラムでは、ページを開いたときの url を見てが w.xxxx.com/forum/f34/faehnlein-standard-bearer-insignia-wear-3514/。

    3。サイトマップは、Googleウェブマスターツールで見たされていない。私はここに詳細な変更のいずれかを行っていない。 http://www.vbenterprisetranslator.co...tegration.html

    4。フォーラムの英語版を表示し、このURLにアクセスしてください。 http://w ww.xxxx.com/forum/f27/hj-gebietsjugendtag-düsseldorf-1933-schlageter-2060/ページが読み込まれる 404 では、url にはドイツ語の文字を示します。 しかし、右をコピーして、url を貼り付ける場合、取得します。 http://w ww.hj-research.com/forum/de/f27/hj-gebietsjugendtag-düsseldorf-1933-schlageter-2060/

    5。私は、URL内の英語以外の文字を置換設定している?はい今のところにあなたが私が上記のdesribedした問題を表示するには、"英語以外の文字を保持"に設定する必要があるかもしれませんので、この問題が解決されるまで。

    あなたからの聴取を楽しみにしています。
    で最後に編集 norku; 22-05-1209:34.

  8. #8
    vBulletinエンタープライズトランスレータ(vBET)スタッフ
    日時
    2010年5月
    投稿
    1,000

    Default

    1、私は私のテストのフォーラムでそれをチェックします。
    2。私はこのURLを試してみましたが、私は問題を見ることができます - すべては良いです。
    3。ので、(このURLから)この命令を使用してこのマップを統合してください
    4。 vbetと統合vbseo - - 編集two vbseoファイル - あなたがSEOリンク翻訳をさせたい場合、ください、すべてはreadme.htmlファイルに記述されています。
    あなたがSEOのリンクを変換したい場合 - - vbseoのオプションについて、あなたがそれを設定されていない場合があるため、readme.htmlファイルのようにそれを設定する必要があります - あなたは404(2つのvbseoファイルを統合する場合)になります

  9. #9

    Default

    2。はい、URLは同じですが、私は上記の点5で述べたように、設定する必要があります。'URLには英語以外の文字を保持する' 何を意味を参照してくださいによるで vbseo 内。この設定は、インストールの指示に定められていますが私のフォーラムでは動作しません。

    4。これらの変更は既に実装されています。あなたが見れば、ファイルはサーバ上にあることがわかります。 '...._ old.php'ファイルは、標準vbseoファイルです。これらのファイルのvbetのバージョンが現在アクティブになっています。

    英語以外の文字の問題が解決するまで、現在の問題は(Googleが私のサイトマップを見ることができない)私は、まだ変更を適用していないためであることを私に伝えることができる限り、私は、サイトマップと周り混乱するつもりはない ここ? yesの場合、私はそのファイルを変更するでしょうが、私はGoogleが不正なURLの負荷を与えるためにしたくないので、私は私が何かを行う前にサイトマップがGoogleによって見されていない正確な理由を知る必要があります。
    で最後に編集 norku; 10-03-1114:03.

  10. #10
    vBulletinエンタープライズトランスレータ(vBET)スタッフ
    日時
    2010年5月
    投稿
    1,000

    Default

    [OK]を私は、URLの翻訳が有効になっているときに参照してください - あなたは404を持っている。
    あるreadme.htmlの指示に従ってお持ちください - URLには英語以外の文字を保持する。動作しない場合 - それを無効にしてください。私はあなたのためのチェクそれでしょうが、私はvbseocpにアクセスする必要があります。

    2 sitemp については。私は、/forum フォルダーの .htaccess のためたぶんこれ google が検出されません。我々 は単にそれをテストできます。ちょうど vBET を無効にしてから .htaccess を削除 /フォーラム.vbet ルール .htaccess の主なコメントし、古い vbseo ファイルを復元します。後に (とき vBET に完全に無効に) このサイトマップをチェックし結び目がその vBET 提供この問題かどうか。

    3。この夜、私はあなたのための構成とvBSEOとの統合をチェックします。

ページ 14 123 ... 最後のLast

このスレッドのためのタグ

投稿許可

  • また しない場合があります 新しいスレッドを投稿
  • また しない場合があります ポスト返信
  • また しない場合があります 投稿の添付ファイル
  • また しない場合があります 自分の投稿を編集
  •