0

私はすでに1時間これに取り組んでいるので、私は尋ねたほうがいいと思いました。

CodeIgniterアプリのURLからindex.phpを削除しようとしていますが、削除できません。

アプリは私のオフィスの専用サーバーで実行されており、URLを介してアプリにアクセスしますhttp://smr_local

これは私のベース仮想ホストブロックです

<VirtualHost 192.168.1.90:80> 
    ServerAdmin admin@server.com
    DocumentRoot "/var/www/smr.dev/app"
    ServerName smr_local
    ErrorLog "/etc/httpd/logs/error_log"
    CustomLog "/etc/httpd/logs/access_log" common
    <Directory /var/www/smr.dev/app>
        Order allow,deny
        Allow from all
        AllowOverride All
    </Directory>
    <IfModule mod_rewrite.c>
        RewriteEngine on
    </IfModule>
</VirtualHost>

これが私の.htaccessファイルです

RewriteEngine on
RewriteBase /
# Hide the application and system directories by redirecting the request to index.php
RewriteRule ^(application|system|\.svn) index.php/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [QSA,L]

そして私の設定ファイル

$config['base_url']    = "http://smr_local/";
$config['index_page'] = '';
$config['uri_protocol'] = 'REQUEST_URI';

現在、ベースURLにアクセスしようとするとhttp://smr_local/user/courses、apacheエラーログにエラーが表示されます。

File does not exist: /var/www/smr.dev/app/user

次に何をしようか本当にわからない。どんな助けでもいただければ幸いです。

4

1 に答える 1

1

公式ユーザーガイドは確認しましたか?

example.com/index.php/news/article/my_article

このファイルは、.htaccess ファイルといくつかの単純なルールを使用して簡単に削除できます。指定されたアイテムを除くすべてがリダイレクトされる「ネガティブ」メソッドを使用した、そのようなファイルの例を次に示します。

RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]

上記の例では、index.php、images、および robots.txt に対するもの以外の HTTP リクエストは、index.php ファイルに対するリクエストとして扱われます。


私は以前にCodeigniterを使用してきましたが、それが私がそれを機能させる方法です:

これが私の.htaccessものです(デフォルトのフォルダー構造があると仮定します):

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    # Removes access to the system folder by users.
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    # Prevents user access to the application folder
    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>
    ErrorDocument 404 /index.php
</IfModule> 

それはの関連部分ですconfig.php

$config['base_url'] = '';
$config['index_page'] = '';
$config['uri_protocol'] = 'AUTO';
$config['url_suffix'] = '';

これで解決しない場合は、Apache の構成に問題がある可能性があります。

次にhttpd.conf、 だけでなく、その他の関連する構成を提供しますvirtual-hosts

于 2012-12-05T00:14:44.193 に答える