次のような URL があります: http://www.domain.com/index.php?token=123 URL を次のよう に書き換えたい: http://www.domain.com/123またはhttp://www .domain.com/123/ この htaccess でhttp://www.domain.com/123/にアクセスできますが、css が読み込まれません。
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [L]
RewriteRule ^([^/]+)/$ index.php?token=$1 [L]
よろしく