0

ここで立ち往生しています。グーグルを試しましたが、解決策が見つかりませんでした

Options +FollowSymLinks
RewriteEngine On

RewriteRule ^index\.php|style.css|img\.png$ - [L]
   # RewriteRule .* index.php [L]
    RewriteRule ^(.*)$ index.php?params=$1 [NC]

URLhttp://localhost/moviestock/home/index print_r($_GET)を押すと、この出力が得られましたが、これ は$_GET が欲しいArray ( )という意味です。$_GET == array()$_GET == array('controler'=> 'home', 'action' => 'index' )http://localhost/moviestock/index.php?controler=home&action=index

4

1 に答える 1

0

htaccess で次の行を試してください。

RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !\.(css|js|png)$
RewriteRule moviestock/([^/])+/([^/])+/?$ moviestock/index.php?controler=$1&action=$2
于 2012-11-15T15:07:03.700 に答える