0

私は MAMP を 1 年以上使用しており、Codeigniter を使用していますが、通常は Web サイトのセットアップに問題はありません。Web サイトを完成させ、正しくホストされるようにベース URL と .htaccess ファイルを変更しました。設定を元に戻しましたが、これが問題です。

メインファイルは htdocs フォルダーに表示されます (他の多くの Web サイトがローカルに保持されています) が、MAMP の開始ページを読み込んで dfile 名のリストが表示されると、このファイルとは別にすべてのファイルが表示されます! 名前を変更しようとしましたが、構成ベースの URL を確認しましたが、これで問題ありません....なぜファイルが表示されないのでしょうか?! 他のファイルはそうで、リンクをクリックすると正常に動作します。

また、ファイルが存在しない状態で URL を入力しようとしたところ、次のようになりました。

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, you@example.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

あなたがそうするように、私はエラーログをチェックしました.apache_error.logでこれは私が受け取ったメッセージです:

[Fri Jan 18 09:37:54 2013] [alert] [client 127.0.0.1] /Applications/MAMP/htdocs/website-name/.htaccess: <IfModule takes one argument, Container for directives based on existance of specified modules
[Fri Jan 18 09:37:55 2013] [alert] [client 127.0.0.1] /Applications/MAMP/htdocs/website-name/.htaccess: <IfModule takes one argument, Container for directives based on existance of specified modules

私の .htaccess ファイルはいつもと同じです...

.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 ^(.*)$ /website-name/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 ^(.*)$ /website-name/index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>

このファイルは壊れている可能性がありますか? または、このファイル内の私の Web サイト全体が破損していますか? これまでにこのような問題を経験したことがないので、アドバイスをいただければ幸いです

ありがとう

4

0 に答える 0