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.
誰かが訪れたとき
http://127.0.0.1/something
彼をリダイレクトしたい
http://127.0.0.1/something/index.php
.htaccess を使用します。
前もって感謝します!
私はついにそれを行う方法を見つけました。
警告: 私は mod_rewrite の経験がないので、これは最善の解決策ではないかもしれません. しかし、それは私にとってはうまくいきます。
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUESTFILENAME} !-f RewriteRule ^(.*)/$ /$1/index.php [L] </IfModule>