0

私は自分のウェブサイトをcodeigniterで構築しています。ここでは、問題を引き起こしているルーティングルールの例を示します。

$route['updategamepage/(:num)'] = 'maincontroller/main/updategamepage/$1';

では、ルールの形式/構造に何か問題がありますか?そのルールを使用するURLの例を次に示します。

http://www.mydomain.com/ci_website/updategamepage/6

そして、そのページが読み込まれると、css / jsはページとともに読み込まれません...何が問題になっているのかについて何か考えはありますか?

4

2 に答える 2

1

ルーティングルールは、CodeIgniterのindex.phpファイルを介してルーティングされるものにのみ適用する必要があります。そのルーティングは、アプリケーションの.htaccessファイルによって決定されます。必要のないときに、htaccessが.cssファイルへのリクエストをCodeIgniterにリダイレクトしている可能性があります。

最終的には、mod_rewriteログを有効にする可能性を含め、Webサーバーのログをチェックして、実際に何が起こっているかを確認することができます。

CodeIgniterアプリに使用する.htaccessの例を次に示します。

(上部近くのRewriteBaseディレクティブを変更する必要があることに注意してください)

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /app/

#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> 
于 2012-07-11T23:43:12.437 に答える
0

.htaccessこれが私のプロジェクトでいつも使用している短いスニペットです。理解しやすいです。

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

index.php、、、を含まないすべてのURLをリダイレクトしassets、パブリックフォルダへのURLsharedの直後にファイルをリダイレクトして、値を''に設定できるようにします。これにより、URLが見やすくなります。および検索エンジン。これがないと、のようなURLがあり、それがあれば、になります。uploadsrobots.txtindex.php$config['index_page']http://www.mysite.com/index.php/pages/abouthttp://www.mysite.com/pages/about

個人的には自分JSCSSファイルをassetsフォルダに保存しますが、ルートフォルダに保存したい場合は、提供したファイルの2行目に記号.htaccessで区切ってフォルダ名を追加するだけです。|

RewriteCond $1 !^(index\.php|js|css|shared|uploads|robots\.txt)

数分前にあなたの他の質問に対する私の答えで提案したように、あなたはあなたの$config['base_url']価値の内容を消して、CodeIgniterにあなたのために仕事をさせたほうがいいです-彼はそれを本当にうまくやってくれます。

于 2012-07-12T02:58:03.940 に答える