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.
リダイレクトしたい
www.domain.com/abc
に
www.domain.com/index.php?a=abc
フォルダabcがまだ存在しない場合のみ。.htaccessファイルはどのように書くべきですか?
試す
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^/(.*)$ http://www.domain.com/index.php?a=$1 [L]