0

デスクとモバイルの 2 つのバージョンの Web サイトがあります。

  1. www.olivashot.com
  2. www.mobile.olivashot.com

私の htacces は、モバイル デバイスをモバイル バージョンにリダイレクトしています。

問題は...

1- 訪問者が「thing」を検索し、完全なリンクが「www.olivashot.com/index.php/thing」として表示されているため、 Googleから来た場合、「www.mobile.olivashot.com/index」にリダイレクトされます。 .php/thing" (幸せな訪問者がいます)

2- しかし、Google のリンクが "www.olivashot.com/thing" の場合 >>> 彼は "www.mobile.olivashot.com" にリダイレクトされます (私は訪問者を失っています。期待される)

これは、joomla サイトのデフォルトの「index.php」を終了するために「何か」を書き換えているためです。

RewriteBase /

## Begin - Joomla! core SEF Section.
#
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
#
# If the requested path and file is not /index.php and the request
# has not already been internally rewritten to the index.php script

RewriteCond %{REQUEST_URI} !^/index\.php
# and the request is for something within the component folder,
# or for the site root, or for an extensionless URL, or the
# requested URL ends with one of the listed extensions
RewriteCond %{REQUEST_URI} /component/|(/[^.]*|\.(php|html?|feed|pdf|vcf|raw))$ [NC]
# and the requested path and file doesn't directly match a physical file
RewriteCond %{REQUEST_FILENAME} !-f
# and the requested path and file doesn't directly match a physical folder
RewriteCond %{REQUEST_FILENAME} !-d
# internally rewrite the request to the index.php script
RewriteRule .* index.php [L]
#
## End - Joomla! core SEF Section.




RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC]
RewriteRule ^(.*)$ http://www.mobile.olivashot.com/$1/ [R=301,L]
4

1 に答える 1

2

いくつかの出口ポイントを持つ Joomla カスタム リダイレクトの前に、最後のブロックを配置する必要があります。これは、順序が次のようになることを意味します。

RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC]
RewriteRule ^(.*)$ http://www.mobile.olivashot.com/$1/ [R=301,L]


## Begin - Joomla! core SEF Section.
...

ファイルの先頭にRewriteEngine On it's already enabledという行をドロップできます。これが機能するようになったら、セキュリティを強化するために、ボイラープレート テンプレートの .htaccess ファイル、h5bp.com をチェックアウトできます。

于 2013-04-30T09:31:27.393 に答える