-1

codeigniter wiki で mod_rewrite が見つかりませんか? どこに行ったの?このリンクを見てみましたが、もうここにはありません。

4

2 に答える 2

1

次の.htaccessようになります。

<IfModule mod_rewrite.c>
RewriteEngine On
#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>
 ErrorDocument 404 index.php
</IfModule>
于 2013-02-12T08:31:38.590 に答える
1

mod_rewrite は Apache Web サーバーの一部であり、codeigniter の一部ではありません。SEO フレンドリーな URL を記述するために使用するこの拡張機能です。

検索エンジンに適した URL を作成するのに役立つこのリンクを見てください。

SEO フレンドリーな URL

mod_rewrite がロードされているか、空の php ファイルに入れられていないかを確認するには phpinfo() ブラウザでそのファイルを呼び出し、mod_rewrite を検索して有効にします Apache Web サーバーの conf ディレクトリで apache httpd.conf を検索しますサーバーをロードした後、Webサーバーを再起動しますphpinofoを再度呼び出し、mod_rewriteを検索します

于 2013-02-12T07:48:29.697 に答える