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.
私の現在のURLは
http://domain.com/directory/page.php
ページにアクセスし、アドレスバーをそのままにしておきたい
http://domain.com/page
これはhtaccessで可能ですか?
mod_rewrite を有効にする必要があります。次に、次のようなものを .htaccess ファイルに入れることができます。
RewriteEngine on RewriteRule ^/page$ /directory/page.php [L]
/directory/ 内のすべての php スクリプトに対してこれを行いたい場合は、代わりに次のようにします。
RewriteEngine on RewriteRule ^/([^/]+)$ /directory/$1.php [L]