0

最近、ウェブサイトを完全に再設計し、別の CMS システムに移行しました。古い W​​eb 構造に基づいてリダイレクトを設定し、何百もの可能な URL のいずれかの文字列を認識して、すべてを新しいサイトにリダイレクトしようとしています。この投稿では、"_xdc.php" という文字列に焦点を当てています。

例:http://www.mysite.com/_xdc.php?somerandomstring (301) を に書き換えたいhttp://www.mysite.com

現在、私はこれを使用しています: RewriteRule ^.*xdc.*$ http://www.mysite.com [R=301,L]

この方法は、サイトのホームページにリダイレクトする限り機能します。ただし、2 つの問題があります。

  1. 1 番目の問題: ? の後の意味不明 追加していますが、追加したくありません。基本的に:にhttp://www.mysite.com/_xdc.php?somerandomstringなりますhttp://www.mysite.com/?somerandomstringが、私はそれが唯一であることを望みますhttp://www.mysite.com

  2. 2 番目の問題:「xdc」という文字を含む新しいページを作成すると、リダイレクトされます。ただし、書き換えを制限しようとすると^.*_xdc.php*、まったく機能しませんでした。これは _ と . 「_xdc.php」では、これらの特殊文字をコードではなくプレーンテキストとして強制的に読み取る方法がわかりません...

私は何が欠けていますか?当然のことだとは思いますが、私はまだ htaccess の初心者なので、助けていただければ幸いです。

必要な場合に備えて、完全な htaccess を以下に含めます。

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!
#
# Block out any script trying to base64_encode data within the URL.
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
# Block out any script that includes a <script> tag in URL.
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%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})
# Return 403 Forbidden header and show the content of the root homepage
RewriteRule .* index.php [F]
#
## End - Rewrite rules to block out some common exploits.

## Begin - Custom redirects
#
# If you need to redirect some pages, or set a canonical non-www to
# www redirect (or vice versa), place that code here. Ensure those
# redirects use the correct RewriteRule syntax and the [R=301,L] flags.

# redirect any variations of a specific character string to a specific address
RewriteRule ^calendar http://www.mysite.com [R=301,L]
RewriteRule ^.*xdc.*$ http://www.mysite.com [R=301,L]

#
## End - Custom redirects

##
# Uncomment following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your Joomla! Directory (just / for root).
##

RewriteBase /deloro

## Begin - Joomla! core SEF Section.
#
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
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 [L]


ErrorDocument 404 http://www.mysite.com/index.php?option=com_content&view=article&id=60
4

1 に答える 1

0

最初の問題は?、書き換えられた URL に a を追加する、QSD (クエリ文字列破棄) フラグ ( docs ; Apache 2.4.0 以降で利用可能) を使用することで修正できます。

RewriteRule ^.*xdc.*$ http://www.mysite.com? [R=301,L]
RewriteRule ^.*xdc.*$ http://www.mysite.com [R=301,L,QSD]

2 番目の問題については、(その URL のみを) 一致させたい場合はhttp://www.mysite.com/_xdc.php、次を使用できます。

RewriteRule ^_xdc\.php$ http://www.mysite.com [R]

あなたの現在の試み(^.*xdc.*$はマッチングとほとんど同じxdcです)。文字の特別な意味は_わかりませんが、文字をエスケープする必要がある場合は、先頭に a を追加する必要があります\(たとえば\.、「すべての文字」ではなく、リテラルのドットに一致します)。上記のルールは私にとってはうまく機能します。mod_rewrite のドキュメントhtaccess regex に関するいくつかの基本情報も参照してください。

于 2013-07-25T22:58:34.193 に答える