When Mac uses MAMP as the development environment laravel page, notfound appears.

Source: Internet
Author: User
Tags sendfile
According to this learning document, I learned that laravel has already typed some code on Ubuntu. the localhostarticlesid with the Id in the link is normally accessed to display the database content, however, when the url of the mamp environment in mac is accessed with parameters, the page notfound may appear... I learned laravel according to this learning document.

I have already typed one piece of code on Ubuntu. the link containing the Id is normally accessed by localhost/articles/id to display the content in the database, however, if the url of the mamp environment in mac is accessed with parameters, the page is not found. I don't know why.

@ Section ('content') id }}" rel = "bookmark" >{{$ article-> title }}> * id in this A tag *

{{$ Article-> content }}

@ Endsection

It should be nginx. conf in MAMP, but I don't know why

user                         root admin;worker_processes             2;events {    worker_connections       1024;}http {    include                    mime.types;    default_type             text/html;    gzip                     on;    gzip_types               text/css text/x-component application/x-javascript application/javascript text/javascript text/x-js text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon;        sendfile                 on;    server {        listen               80 default_server;        # MAMP DOCUMENT_ROOT !! Don't remove this line !!        root                 "/Applications/MAMP/htdocs/laravel/public";        access_log           /Applications/MAMP/logs/nginx_access.log;        error_log            /Applications/MAMP/logs/nginx_error.log debug;        location / {            index            index.html index.php;        }            location ~* /MAMP/(.*)$ {            root             /Applications/MAMP/bin;            index            index.php;            location ~ \.php$ {                try_files        $uri =404;                fastcgi_pass     unix:/Applications/MAMP/Library/logs/fastcgi/nginxFastCGI.sock;                fastcgi_param    SCRIPT_FILENAME $document_root$fastcgi_script_name;                include          fastcgi_params;            }        }        location ~* /phpMyAdmin(.*)$ {            root             /Applications/MAMP/bin;            index            index.php;            location ~ \.php$ {                try_files        $uri =404;                fastcgi_pass     unix:/Applications/MAMP/Library/logs/fastcgi/nginxFastCGI.sock;                fastcgi_param    SCRIPT_FILENAME $document_root$fastcgi_script_name;                include          fastcgi_params;            }        }        location ~* /phpPgAdmin(.*)$ {            root             /Applications/MAMP/bin;            index            index.php;            location ~ \.php$ {                try_files        $uri =404;                fastcgi_pass     unix:/Applications/MAMP/Library/logs/fastcgi/nginxFastCGI.sock;                fastcgi_param    SCRIPT_FILENAME $document_root$fastcgi_script_name;                include          fastcgi_params;            }        }                location ~* /phpLiteAdmin(.*)$ {            root             /Applications/MAMP/bin;            index            index.php;            location ~ \.php$ {                try_files        $uri =404;                fastcgi_pass     unix:/Applications/MAMP/Library/logs/fastcgi/nginxFastCGI.sock;                fastcgi_param    SCRIPT_FILENAME $document_root$fastcgi_script_name;                include          fastcgi_params;            }        }                location ~* /SQLiteManager(.*)$ {            root             /Applications/MAMP/bin;            index            index.php;            location ~ \.php$ {                try_files        $uri =404;                fastcgi_pass     unix:/Applications/MAMP/Library/logs/fastcgi/nginxFastCGI.sock;                fastcgi_param    SCRIPT_FILENAME $document_root$fastcgi_script_name;                include          fastcgi_params;            }        }                location /icons {            alias /Applications/MAMP/Library/icons;            autoindex on;        }                location /favicon.ico {            alias /Applications/MAMP/bin/favicon.ico;            # log_not_found off;            # access_log off;        }        location ~ \.php$ {            try_files        $uri =404;            fastcgi_pass     unix:/Applications/MAMP/Library/logs/fastcgi/nginxFastCGI.sock;            fastcgi_param    SCRIPT_FILENAME $document_root$fastcgi_script_name;            include          fastcgi_params;        }        location ~ /\. {            deny all;        }        # location ~* \.(gif|jpg|png|pdf)$ {        #    expires          30d;        # }           # location = /robots.txt {        #    allow all;        #    log_not_found off;        #    access_log off;           # }        # location ~* \.(txt|log)$ {        #    allow 127.0.0.1;        #    deny all;           # }                      # location ~ \..*/.*\.php$ {        #    return 403;           # }        location /nginx_status {            stub_status      on;            access_log       off;            allow            127.0.0.1;            deny             all;        }    }    # HTTPS server    #    #server {    #    listen       443 ssl;    #    server_name  localhost;    #    ssl_certificate      cert.pem;    #    ssl_certificate_key  cert.key;    #    ssl_session_cache    shared:SSL:1m;    #    ssl_session_timeout  5m;    #     ssl_protocols TLSv1 TLSv1.1 TLSv1.2;    #    ssl_ciphers  HIGH:!aNULL:!MD5;    #    ssl_prefer_server_ciphers  on;    #    location / {    #        root   html;    #        index  index.html index.htm;    #    }    #}}

Has anyone ever encountered this kind of problem ???

Reply content:

I learned laravel according to this learning document.

I have already typed one piece of code on Ubuntu. the link containing the Id is normally accessed by localhost/articles/id to display the content in the database, however, if the url of the mamp environment in mac is accessed with parameters, the page is not found. I don't know why.

@ Section ('content') id }}" rel = "bookmark" >{{$ article-> title }}> * id in this A tag *

{{$ Article-> content }}

@ Endsection

It should be nginx. conf in MAMP, but I don't know why

user                         root admin;worker_processes             2;events {    worker_connections       1024;}http {    include                    mime.types;    default_type             text/html;    gzip                     on;    gzip_types               text/css text/x-component application/x-javascript application/javascript text/javascript text/x-js text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon;        sendfile                 on;    server {        listen               80 default_server;        # MAMP DOCUMENT_ROOT !! Don't remove this line !!        root                 "/Applications/MAMP/htdocs/laravel/public";        access_log           /Applications/MAMP/logs/nginx_access.log;        error_log            /Applications/MAMP/logs/nginx_error.log debug;        location / {            index            index.html index.php;        }            location ~* /MAMP/(.*)$ {            root             /Applications/MAMP/bin;            index            index.php;            location ~ \.php$ {                try_files        $uri =404;                fastcgi_pass     unix:/Applications/MAMP/Library/logs/fastcgi/nginxFastCGI.sock;                fastcgi_param    SCRIPT_FILENAME $document_root$fastcgi_script_name;                include          fastcgi_params;            }        }        location ~* /phpMyAdmin(.*)$ {            root             /Applications/MAMP/bin;            index            index.php;            location ~ \.php$ {                try_files        $uri =404;                fastcgi_pass     unix:/Applications/MAMP/Library/logs/fastcgi/nginxFastCGI.sock;                fastcgi_param    SCRIPT_FILENAME $document_root$fastcgi_script_name;                include          fastcgi_params;            }        }        location ~* /phpPgAdmin(.*)$ {            root             /Applications/MAMP/bin;            index            index.php;            location ~ \.php$ {                try_files        $uri =404;                fastcgi_pass     unix:/Applications/MAMP/Library/logs/fastcgi/nginxFastCGI.sock;                fastcgi_param    SCRIPT_FILENAME $document_root$fastcgi_script_name;                include          fastcgi_params;            }        }                location ~* /phpLiteAdmin(.*)$ {            root             /Applications/MAMP/bin;            index            index.php;            location ~ \.php$ {                try_files        $uri =404;                fastcgi_pass     unix:/Applications/MAMP/Library/logs/fastcgi/nginxFastCGI.sock;                fastcgi_param    SCRIPT_FILENAME $document_root$fastcgi_script_name;                include          fastcgi_params;            }        }                location ~* /SQLiteManager(.*)$ {            root             /Applications/MAMP/bin;            index            index.php;            location ~ \.php$ {                try_files        $uri =404;                fastcgi_pass     unix:/Applications/MAMP/Library/logs/fastcgi/nginxFastCGI.sock;                fastcgi_param    SCRIPT_FILENAME $document_root$fastcgi_script_name;                include          fastcgi_params;            }        }                location /icons {            alias /Applications/MAMP/Library/icons;            autoindex on;        }                location /favicon.ico {            alias /Applications/MAMP/bin/favicon.ico;            # log_not_found off;            # access_log off;        }        location ~ \.php$ {            try_files        $uri =404;            fastcgi_pass     unix:/Applications/MAMP/Library/logs/fastcgi/nginxFastCGI.sock;            fastcgi_param    SCRIPT_FILENAME $document_root$fastcgi_script_name;            include          fastcgi_params;        }        location ~ /\. {            deny all;        }        # location ~* \.(gif|jpg|png|pdf)$ {        #    expires          30d;        # }           # location = /robots.txt {        #    allow all;        #    log_not_found off;        #    access_log off;           # }        # location ~* \.(txt|log)$ {        #    allow 127.0.0.1;        #    deny all;           # }                      # location ~ \..*/.*\.php$ {        #    return 403;           # }        location /nginx_status {            stub_status      on;            access_log       off;            allow            127.0.0.1;            deny             all;        }    }    # HTTPS server    #    #server {    #    listen       443 ssl;    #    server_name  localhost;    #    ssl_certificate      cert.pem;    #    ssl_certificate_key  cert.key;    #    ssl_session_cache    shared:SSL:1m;    #    ssl_session_timeout  5m;    #     ssl_protocols TLSv1 TLSv1.1 TLSv1.2;    #    ssl_ciphers  HIGH:!aNULL:!MD5;    #    ssl_prefer_server_ciphers  on;    #    location / {    #        root   html;    #        index  index.html index.htm;    #    }    #}}

Has anyone ever encountered this kind of problem ???

In my understanding, if nginx accesses php, you need to use php-fpm ....

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.