.htaccess
ごく最近、を使用して URL 書き換えについて学びました。初心者の私には難しい作業になりました:(
次のように、特定の URL を書き換えることができます。
RewriteEngine On
RewriteRule ^nothing/?$ abc.php [NC,L]
しかし、私はそれに満足しておらず、あなたの助けが必要です.
私の .php ファイルは、という名前のフォルダーに保存されていますfiles
。だから私は次のようなURLを持っています:
www.mysite.com/files/login.php?lf=student
www.mysite.com/files/login.php?lf=admin
www.mysite.com/files/s_home.php
www.mysite.com/files/recharge.php
私が欲しいのは簡単です:
mysite.com/login
mysite.com/login
mysite.com/s_home
mysite.com/recharge
誰でも助けることができますか?