ディレクトリ/ adm(私の場合は管理パネル)にURLフレンドリーがないように、サイトをURLフレンドリーマッチにしたい
私の.htaccess
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
</IfModule>
# For all files not found in the file system, reroute the request to the
# "index.php" front controller, keeping the query string intact
<IfModule mod_rewrite.c>
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [L]
</IfModule>
私はこれをやりたいだけです。このルールが素人のコマンドで意味することを学んでいます。htaccess