web-dev-qa-db-ja.com

Joomlaはindex.phpを削除します-ホームページ.htaccessにリダイレクトします

以下は、私の.htaccess、SEF、およびグローバル設定でUse rewriting enableです。しかし、私はまだ2つのURLで自分のホームページにアクセスできます。たとえば、www.example.comおよびwww.example.com/index.php。

私は何か間違ったことをしていますか? index.phpから削除する方法を教えてください

##
# @package      Joomla
# @copyright    Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.
# @license      GNU General Public License version 2 or later; see LICENSE.txt
##

##
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!
#
# The line just below this section: 'Options +FollowSymLinks' may cause problems
# with some server configurations.  It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file.  If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your sef url's.  If they work,
# it has been set by your server administrator and you do not need it set here.
##

## Can be commented out if causes errors, see notes above.
Options +FollowSymLinks

## Mod_rewrite in use.

RewriteEngine On
RewriteCond %{HTTP_Host} ^mysitename.com [NC]
RewriteRule (.*) http://www.mysitename.com/$1 [L,R=301]
#

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

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

以下のようなものを試すことができます:

# Redirect index.php to Root
RewriteCond %{THE_REQUEST} !^POST
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/
RewriteCond %{SERVER_PORT}>s ^(443>(s)|[0-9]+>s)$
RewriteRule ^index\.php$ http%2://yoursite.com/ [R=301,L]

更新:

以下の.htaccessファイルの内容を試してください。また、セキュリティを強化するためのいくつかの追加ルールも含まれています。必ずすべての行を読み、必要に応じて調整してください。

メモ-手順:

  1. 古いhtaccessファイルのコピーを作成し、名前をhtaccess-old.txtに変更して、サーバーに保存します。
  2. ここの内容をアクティブな.htaccessファイルに貼り付けて保存します。
  3. なんらかの理由でサーバーから500エラーが発生した場合-古いhtaccessに戻して、ここで報告してください。
  4. Htaccessファイルが機能するためには、全員が同じページにいることを確認するために、joomlaルートのデフォルトのhtaccess.txtファイルから.htaccessに名前を変更する必要があります。

また、Joomla Global ConfigurationRL Rewritingを有効にする必要があります。

# @package    Joomla
# @copyright  Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.
# @license    GNU General Public License version 2 or later; see LICENSE.txt
##

##
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!
#
# The line just below this section: 'Options +FollowSymLinks' may cause problems
# with some server configurations.  It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file.  If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your sef url's.  If they work,
# it has been set by your server administrator and you do not need it set here.
##

##### Begin - RewriteEngine enabled  
### 1. --- Can be commented out if causes errors, see notes above. ---
RewriteEngine On
##### End - RewriteEngine enabled

##### Begin - RewriteBase set 
### 1. ----------  MAKE SURE YOU HAVE ENABLED THE REWRITE SETTINGS IN GLOBAL CONFIGURATION IN JOOMLA ADMIN -------
### 2. ----------  IF YOUR SITE IS NOT AT THE ROOT, YOU NEED TO SPECIFY THE FOLDER E.G. RewriteBase /yourSiteRootFolder -------

RewriteBase /
##### End - RewriteBase set 



##### Begin - File execution order 
### 1. ----------THIS IS WILL MAKE SURE THAT INDEX.PHP IS LOADED FIRST THAN INDEX.HTML -------
DirectoryIndex index.php index.html
##### End - File execution order --

##### Begin - Block directory listings
### 1. ----------This is an EXTRA SECURITY MEASURE to Disable Directory Listings-------
IndexIgnore *
Options -Indexes
##### End - No directory listings


##### Begin - Redirect index.php to root
### 1. ---------- MAKE SURE YOU ADD YOUR SITE URL AT THE REWRITE RULE -------
RewriteCond %{THE_REQUEST} !^POST
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/
RewriteCond %{SERVER_PORT}>s ^(443>(s)|[0-9]+>s)$
RewriteRule ^index\.php$ http%2://yoursite.com/ [R=301,L]
##### End - Redirect index.php to root


##### Begin - Redirect non-www to www
RewriteCond %{HTTP_Host} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_Host}/$1 [R=301,L]
##### End - Redirect non-www to www

## 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 - Server Protection : Disallow access to htaccess.txt, php.ini and configuration.php-dist
### 1. --- Extra security measure, to prevent access to these essential files ---
RewriteRule ^(htaccess\.txt|configuration\.php-dist|php\.ini)$ - [F]
##### End - server protection


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