web-dev-qa-db-ja.com

古いコアPHPサイトから新しいJoomlaサイトにページをリダイレクトするにはどうすればよいですか?

古いサイトをコアPHPに組み込み、昨年Joomla 1.5に再び開発しました(いくつかの制限があるため、1.5に組み込む必要があります)。問題は、JoomlaでSEO URLを使用しているため、サイトのURLが変更されたことです。

その間に、.htaccessを使用して、古いURLから新しいURLにユーザーをリダイレクトします。

Redirect /pages/oldpage.php http://www.mydomain.com/products/category/new_page.html

これは、ユーザーを新しいURLにリダイレクトすることをお勧めしますか?(同じサーバーを使用しました)。

もう1つ、サイトでスプラッシュページを使用し、セットアップするためにいくつかの変更を加えました。そのため、重要なリンクの1つが機能していません。

http://www.mydomail.com/index.php

どうすればそれを取り除くことができますか?誰かが私のサイトDirectoryIndex splash.html home.html index.phpを開いたときに、最初にスプラッシュページを開くために.htaccessでwww.mydomain.comを使用しました。

注:私のウェブサイトは専用のUbuntuサーバーでホストされています。


編集:前述したように、私はJoomlaを使用し、SEF機能を有効にしました。既に以下のように.htaccessを記述しています(あまり理解していません)。

DirectoryIndex splash.html home.html index.php   
 RewriteEngine On

  ########## Begin - Rewrite rules to block out some common exploits
## If you experience problems on your site block out the operations listed below
## This attempts to block the most common type of exploit `attempts` to Joomla!
#
## Deny access to extension xml files (uncomment out to activate)
#<Files ~ "\.xml$">
#Order allow,deny
#Deny from all
#Satisfy all
#</Files>
## End of deny access to extension xml files
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
# Block out any script trying to base64_encode crap to send via URL
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
# Block out any script that includes a <script> tag in URL
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Send all blocked request to homepage with 403 Forbidden error!
RewriteRule ^(.*)$ index.php [F,L]

RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]

Redirect /pages/oldpage.php http://www.mydomain.com/products/category/new_page.html
.....................
.................
5
pkachhia

ユーザーを新しいURLにリダイレクトするのは良い習慣ですか?

はい。検索エンジンのランキングを維持し、サイトへの古いリンクが破損しないようにするには、これを行う必要があります。ただし、301(永続的に移動)リダイレクトを使用する必要があります...

Redirect 301 /pages/oldpage.php ....

ステータスコードを省略すると、302(一時)リダイレクトが返され、検索エンジンがリンクを更新しない場合があります。


http://www.mydomail.com/index.php    # Returns 404 when accessed directly

(注:以下は、/index.phpが機能していない場合、/からベアURL /index.phpにリダイレクトするための一般的なコードです(それは存在するが、直接アクセスしたときに404を返している場合)、修正が必要な何か他の問題がある可能性があります)

ここでも、/index.phpからドメインルートに301リダイレクトする必要があります(おそらくhttp://www.mydomain.comは正常に動作しますか?!)。ただし、DirectoryIndex index.phpを持っている場合、mod_dirは//index.phpに内部的に書き換えるため、リダイレクトループを作成できるため、これはそれほど簡単ではありません。ただし、これはmod_rewriteで解決し、THE_REQUESTを明確にチェックし、内部書き換えではなくクライアント(HTTP)からの要求である場合にのみリダイレクトします。

Options +FollowSymLinks
DirectoryIndex index.php

RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/
RewriteRule ^index\.php$ http://www.example.com/ [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

(実際、おそらくディレクトリインデックスからベアURLにリダイレクトする必要があります。)

1
MrWhite