
私はcodeigniterでPHPを使用してWebアプリケーションを構築しています。 localhostでは、すべてがうまく動作します。しかし、httpd.confのすべてを扱ったにもかかわらず、.htaccessファイルは私のライブサーバー(RH7.1 Apache 2.4)ではまだ無視されます。 Apacheサービスを再起動しましたが、何の効果もありません。何が間違っているのか知っていますか?
.htaccess:
RewriteEngine on
RewriteCond $1 !^(index\.php|assets|images|js|css|uploads|favicon.png)
RewriteCond %(REQUEST_FILENAME) !-f
RewriteCond %(REQUEST_FILENAME) !-d
RewriteRule ^(.*)$ ./index.php/$1 [L]
そして
strpos(shell_exec('/usr/local/apache/bin/apachectl -l'), 'mod_rewrite') !== false
1を返します。
httpd.conf値:
# Further relax access to the default document root:
<Directory "/var/www/html">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.4/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride All
#
# Controls who can get stuff from this server.
#
Require all granted
</Directory>
。 。 。 。 。
#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<Files ".ht*">
Require all denied
</Files>
答え1
問題は.htaccessコンテンツにあるようです。私はそれを次に置き換えました:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
#Removes access to the system folder by users.
#Additionally this will allow you to create a System.php controller,
#previously this would not have been possible.
#'system' can be replaced if you have renamed your system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
#When your application folder isn't in the system folder
#This snippet prevents user access to the application folder
#Submitted by: Fabdrol
#Rename 'application' to your applications folder name.
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
#Checks to see if the user is attempting to access a valid file,
#such as an image or css document, if this isn't true it sends the
#request to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
# If we don't have mod_rewrite installed, all 404's
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughin
ErrorDocument 404 /index.php
</IfModule>
うまく機能し始めました。私はこれに少し新しいです。以前に機能していなかった理由と、新しい.htaccessファイルのコンテンツで動作する理由を教えてくれる人はいますか?
答え2
以前に機能していなかった理由と、新しい.htaccessファイルのコンテンツで動作する理由を教えてくれる人はいますか?
RewriteRule ^(.*)$ ./index.php/$1 [L]
ソース.htaccess
ファイルは、添付ファイルの一部として要求されたURLパスを渡します。パス名情報URL(別名PATH_INFO
)にあります。例えば。/index.php/foo/bar
。
Codeigniterでこの機能を有効にするには、以下で明示的に設定する必要がありますconfig.php
。
$config['uri_protocol'] = 'PATH_INFO';
ただし、PATH_INFO
このディレクティブを使用してApacheサーバー設定でこれを無効にすることもできますAcceptPathInfo
。
RewriteRule ^(.*)$ index.php?/$1 [L]
そして、「新しい」.htaccess
ファイルには、要求されたURLパスが次のようになります。リクエストパラメータ代わりに。例えば。/index.php?/foo/bar
(追加参照?
)。これはCodeigniterのデフォルト構成であり、サーバー構成に関係なく常に機能します。