1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

PHP導入、MAMPで「The requested URL was not found on this server.」で1時間溶かした話。

Last updated at Posted at 2023-02-11

タイトル通り、PHPの導入の際、ページが反映されず、1時間と溶かしました。

お急ぎの方は結論へ!

過程

MAMPをインストールし、起動でき、初期ページも表示されるのに、「The requested URL was not found on this server.」が表示される。

Document rootもhtdocsになっていて、「MAMP/conf/apache/httpd.conf」内のDocumentRootも同じになっていて、間違いがない。

参考
https://qiita.com/vber_program/items/962d32ece552d4ebeacf

エラーログも見るも、以下のサイトのようなエラーはなく、お手上げ状態に。。。

参考
https://teratail.com/questions/288997

結論

もう一度コードを見ると、明らかなミスを発見!

NGコード
<?php

echo 'aaa'

?>
OKコード
<?php

echo 'aaa';

?>

お分かりだろうか?

そうecho 'aaa';の「;」忘れでした。

あ〜、時間がもったいない!

(追記)
現在、一度表示されてから「;」を抜いても、画面はしっかり表示されるようです。
導入の初期表示で、「;」なしだと「The requested URL was not found on this server.」となる模様です。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?