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.
404 エラーで index.php を指すように .htaccess を設定しまし ErrorDocument 404 /index.php た。URL がデータベース内のページでない場合、index.php は 404 を返します。それ以外の場合は、正しいページが表示されます。
ErrorDocument 404 /index.php
ここにも $_POST データを送信するにはどうすればよいですか?
以下を使用してこれを解決できました。
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-s RewriteRule .* index.php
私を正しい道に導いてくれたマリオに感謝します。