index.phpのpageというGETパラメータ名でアクセスしたいのですがうまくいきません。
http://www.example.com/list/index.php?page=aaaaaaa
http://www.example.com/list/aaaaaaa

listディレクトリ配下の.htaccessは下記になります。
どこが悪いのでしょうか。
RewriteEngine On
RewriteRule ^([^/]*)/?$ /index.php?page=$1 [L]
AllowEncodedSlashes On

また、index.phpが設置されている場所にはimagesやjsというディレクトリがあるのですが、
これには直接アクセスさせるにはどうすればよいのでしょうか。

宜しくお願いいたします。