web-dev-qa-db-ja.com

限られたページ数のJoomlaサイトでhtaccessの410エラーコードが必要

ガントリー5.4.31を使用しているJoomla 3.9.13サイトがあります。

サイトから削除したい記事が限られています。404エラーを返す代わりに、410エラーを返したいのですが。

私はプログラマーではないので、コードを入力するために.htaccessファイルの正しい構文と場所を理解するのに助けが必要です。

記事の最終的な名前は次のようになり、46あります。

/23-10003-10054-almonds
/90-10310-10027-corn-starch
/25-anticaking-agents
/29-bulking-agents

これらを含むものの正しい構文を知りたいのですが、次のように、前に追加のテキスト、後に追加のテキストを含めることができます。

/item/23-10003-10054-almonds?88dkdkgdk

または

/item/23-10003-10054-almonds/ldkdjsdhsd

また、どのページに配信するかを伝える方法を教えてください。デフォルトのエラーページになりますか?または、他のページを作成する必要がありますか?技術的には、ビジュアル410エラーページのコンテンツは、現在のエラーページと同じになります。しかし、私はJoomla with Gantryがどのようにエラーページを構成するのかわかりません。簡単な場合は、使用するページを作成します。どちらにしても、正しいエラーページの場所を知らせる.htaccessページの構文は何ですか?

以下は私の現在の.htaccessファイルですが、私が知っている一部の項目は削除されていますが、関連性はありません。

##
# @package    Joomla
## No directory listings

<IfModule autoindex>
  IndexIgnore *
</IfModule>

## Can be commented out if causes errors, see notes above.
Options +FollowSymlinks
Options -Indexes

## Mod_rewrite in use.

RewriteEngine On

## Begin - Rewrite rules to block out some common exploits.
# If you experience problems on your site then comment out the operations listed 
# below by adding a # to the beginning of the line.
# This attempts to block the most common type of exploit `attempts` on Joomla!
#
# Block any script trying to base64_encode data within the URL.
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
# Block any script that includes a <script> tag in URL.
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
# Block any script trying to set a PHP GLOBALS variable via URL.
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block 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 home page
RewriteRule .* index.php [F]
#
## End - Rewrite rules to block out some common exploits.

## Begin - Custom redirects
## End - Custom redirects

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

# 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 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.


## BEGIN EXPIRES CACHING - JCH OPTIMIZE ##
<IfModule mod_expires.c>
  ExpiresActive on

# Perhaps better to whitelist expires rules? Perhaps.
  ExpiresDefault "access plus 1 year"

.
.
.

AddOutputFilterByType DEFLATE font/woff2
# For Olders Browsers Which Can't Handle Compression
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
</IfModule>
## END EXPIRES CACHING - JCH OPTIMIZE ##
4
Thora

このような46の書き換えルールを作成できます。彼らは## Begin - Joomla! core SEF Sectionの前に。htaccessファイルに移動する必要があります。

RewriteRule ^/?23-10003-10054-almonds - [G,L]
RewriteRule ^/?90-10310-10027-corn-starch - [G,L]
RewriteRule ^/?25-anticaking-agents - [G,L]
RewriteRule ^/?29-bulking-agents - [G,L]
  • ^は、「で始まる」ことを意味します
  • /?はオプションの開始スラッシュです。これは。htaccessでは省略できます。開始スラッシュは、Apache .confファイルのルールにある必要があり、。htaccessでは省略される必要があります。疑問符を使用してオプションにすることで、ルールの移植性が高まり、どちらの場所でも使用できるようになります。
  • -は、URLをそのままにし、変更しないことを意味します
  • Gは「Gone」を意味します-410ステータスを送信します
  • Lは「最後」を意味します-他の書き換えルールは実行されません

これらのルールは、Webサーバーへのすべてのリクエストに対して実行されます。それらの46を持っていることはおそらく問題ありません。数百またはルールに拡張すると、パフォーマンスが低下する可能性があります。

これらを1つのルールに組み合わせて、少しパフォーマンスが向上するようにすることもできます:RewriteRule ^/?((23-10003-10054-almonds)|(90-10310-10027-corn-starch)|(25-anticaking-agents)|(29-bulking-agents)) - [G,L]ただし、ルールは非常に長くなり、維持するのが難しい場合があります。

Joomlaが箱から取り出した記事の410ステータスの送信をサポートしているようには見えません。 Joomla Stack Exchangeサイトには、410コードについていくつか質問があります。

ただし、どちらもあなたの状況と完全に一致しません。 Joomlaが.htaccessでエラーを返すのではなく、410エラーを返すようにする方法があるかどうかを尋ねる価値があるかもしれません。

1