2012-11-09から1日間の記事一覧

UserDirアクセスのリライトルール

ハマった。。。 <IfModule mod_userdir.c> UserDir public_html </IfModule> <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [R] </IfModule>と設定して、 http://mydomain/~myuser/abc/defというふうにアクセスすると、期待…