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.
.gifをx1.phpにリダイレクトしたい。なんらかの理由で動作していません
.htaccess
Options +FollowSymlinks RewriteEngine on RewriteRule .(gif)$ x1.php [NC]
ここで正確に何が問題になっていますか?
() を省略し、ドットもマスクしてください。
RewriteRule \.gif$ x1.php [NC]