2

次の URL を SEO に適した URL に変更したいと考えています。

Change the following URL : http://www.peacockgirls.com/index.php?page=1 into http://www.peacockgirls.com
Change the following URL : http://www.peacockgirls.com/index.php?page=2 into http://www.peacockgirls.com/greece-escort
Change the following URL : http://www.peacockgirls.com/index.php?page=3 into http://www.peacockgirls.com/athens-escort
Change the following URL : http://www.peacockgirls.com/index.php?page=4 into http://www.peacockgirls.com/bookings
Change the following URL : http://www.peacockgirls.com/index.php?page=5 into http://www.peacockgirls.com/jobs
Change the following URL : http://www.peacockgirls.com/index.php?page=6 into http://www.peacockgirls.com/contact-us
Change the following URL : http://www.peacockgirls.com/index.php?page=24 into http://www.peacockgirls.com/articles
Change the following URL : http://www.peacockgirls.com/index.php?page=7 into http://www.peacockgirls.com/links
Change the following URL : http://www.peacockgirls.com/index.php?profile=22 into http://www.peacockgirls.com/profile/aleena
Change the following URL : http://www.peacockgirls.com/index.php?profile=40 into http://www.peacockgirls.com/profile/fabiana
Change the following URL : http://www.peacockgirls.com/index.php?profile=48 into http://www.peacockgirls.com/profile/sabrina
Change the following URL : http://www.peacockgirls.com/index.php?profile=69 into http://www.peacockgirls.com/profile/suzanna
Change the following URL : http://www.peacockgirls.com/index.php?profile=63 into http://www.peacockgirls.com/profile/anna
Change the following URL : http://www.peacockgirls.com/index.php?profile=70 into http://www.peacockgirls.com/profile/sam
Change the following URL : http://www.peacockgirls.com/index.php?profile=61 into http://www.peacockgirls.com/profile/Larissa&Samantha
Change the following URL : http://www.peacockgirls.com/index.php?profile=54 into http://www.peacockgirls.com/profile/McKenzie
Change the following URL : http://www.peacockgirls.com/index.php?profile=29 into http://www.peacockgirls.com/profile/valery

を使用した URL の名前変更テクニックを 4 つまたは 5 つ教えていただけれ.htaccessば、残りの URL について説明します。私はこの仕事を与えられましたが、それを行うことができません。

4

2 に答える 2

1

その種のタスクでは、私は行きRewriteMapます。

2 つの別個のマップ テキスト ファイルを使用できます (ファイル管理を改善するため): 1 つはプロファイル用、もう 1 つはページ用 (他のタイプの書き換え用の新しいファイル)。

あなた.htaccessはそのように設定することができます:

RewriteMap userid txt:/etc/apache2/useridmap.txt
RewriteRule ^/index.php?page=(.+) /profile/${userid:$1} [L,R=301]

マップ テキスト ファイルの形式は次のとおりです。

# Comment line
MatchingKey SubstValue
MatchingKey SubstValue # comment

あなたの場合、プロファイルのテキスト ファイルは次のようになります。

22 aleena
40 fabiana
# more mappings

ページのリダイレクトには、次のアプローチを使用できます (マップ ファイルと RewriteRule式は異なります) 。

RewriteMap 作業を行う前に、まずドキュメントに目を通して、ツール、つまりその構成と使用法を理解することをお勧めします。

それがあなたの仕事の良い方向になることを願っています。

于 2013-02-24T17:14:00.933 に答える