0

私のファイル構造は次のようなものです:

application
public_html
       .htaccess
       index

アプリケーション/設定/config.php

       here i have set blank my base_url and index page

.htaccess

DirectoryIndex index.php
RewriteEngine on                       
RewriteCond $1 !^(index\.php|(.*)\.swf|forums|images|css|downloads|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php?$1 [L,QSA] 

それでも、index.phpを使用している場合、 httpd.confで仮想ホストを使用しています

<VirtualHost *:80>

    ServerAdmin webmaster@dab
    DocumentRoot "c:\wamp\www\dab\public_html"

    ServerName dab
    ServerAlias www.dab
    ErrorLog "logs/localhost-error.log"
    CustomLog "logs/localhost-acces.log" common

    <directory "c:\wamp\www\dab\public_html">
        Options FollowSymlinks
        AllowOverride None
        Order Deny,Allow
        Deny from all
        Allow from 127.0.0.1
    </directory>
</VirtualHost>

URLでindex.phpを使用しないための解決策は何ですか

前もって感謝します

4

2 に答える 2

1

application/config/config.php ファイルで次の行を見つけます

$config['index_page'] = 'index.php';

以下のように変数を空に設定します。

$config['index_page'] = '';

それだけです、それは私のために働きました。

さらにうまくいかない場合は、次の変数をこれらのパラメータ ('AUTO'、'PATH_INFO'、'QUERY_STRING'、'REQUEST_URI'、および 'ORIG_PATH_INFO') で 1 つずつ置き換えてみてください。

$config['uri_protocol'] = 'AUTO';
于 2013-05-01T09:17:49.563 に答える
1

Apache conf で mod_rewrite モジュールが有効になっていることを確認してから、次のような .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>
于 2013-05-01T09:18:58.050 に答える