様々なURLにアクセスしてきた際にindex.phpを通す方法の記述内容

.htaccess

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
最終更新:2016年05月10日 12:45