Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
変数でインデックスを設定したい..例のようlocalhost/sitenameにしたいlocalhost/sitename/index.php?variable=value^^誰でも助けてくれる
localhost/sitename
localhost/sitename/index.php?variable=value
webroot ディレクトリに .htaccess ファイルを作成し、その中に以下を配置する必要があります。
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?uri=$1 [L,QSA]
有効なディレクトリ/ファイルに直接アクセスしたくない場合は、中央の 2 行を削除してください。