पर्मलिंक बदलने से मुझे नग्नेक्स पर 404 त्रुटियां होती हैं


18

संपादित करें

यह पता चला है कि मैं गलत पेड़ को संपादित करने की कोशिश कर रहा था। मुझे स्पष्ट रूप से जो करने की जरूरत है वह मेरी .conf फ़ाइल को संपादित करना है। इससे पहले कि मैं इसे पढ़ूं, my_app.conf इस तरह दिखे:

upstream backend {
    server unix:/u/apps/my_app/tmp/php.sock;
}

server {

    listen 80 default;
    root /u/apps/my_app/www;
    index index.php;

    access_log /u/apps/my_app/logs/access.log;
    error_log /u/apps/my_app/logs/error.log;

    location / {
        try_files $uri $uri/ /index.php;
    }

    # This location block matches anything ending in .php and sends it to
    # our PHP-FPM socket, defined in the upstream block above.
    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_pass backend;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME /u/apps/my_app/www$fastcgi_script_name;
        include fastcgi_params;
    }

    # This location block is used to view PHP-FPM stats
    location ~ ^/(php_status|php_ping)$ {
        fastcgi_pass backend;
        fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
        include fastcgi_params;
        allow 127.0.0.1;
        deny all;
    }

    # This location block is used to view nginx stats
    location /nginx_status {
        stub_status on;
        access_log off;
        allow 127.0.0.1;
        deny all;
    }
}

अब यह ऐसा दिखता है, और यह अभी भी काम नहीं कर रहा है:

upstream backend {
    server unix:/u/apps/my_app/tmp/php.sock;
}

server {

    listen 80 default;
    root /u/apps/my_app/www;
    index index.php;

    access_log /u/apps/my_app/logs/access.log;
    error_log /u/apps/my_app/logs/error.log;

    location / {
        try_files $uri $uri/ /index.php;
    }

    location /wordpress/ {
        try_files $uri $uri/ /index.php?$args;
    }

    rewrite /wp-admin$ $scheme://$host$uri/ permanent;

    location ~* ^.+\.(ogg|ogv|svg|svgz|eot|otf|woff|mp4|ttf|rss|atom|jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2    |doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf)$ {
       access_log off; log_not_found off; expires max;
    }

    # Uncomment one of the lines below for the appropriate caching plugin (if used).
    #include global/wordpress-wp-super-cache.conf;
    #include global/wordpress-w3-total-cache.conf;

    # This location block matches anything ending in .php and sends it to
    # our PHP-FPM socket, defined in the upstream block above.
    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_pass backend;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME /u/apps/my_app/www$fastcgi_script_name;
        include fastcgi_params;
    }

    # This location block is used to view PHP-FPM stats
    location ~ ^/(php_status|php_ping)$ {
        fastcgi_pass backend;
        fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
        include fastcgi_params;
        allow 127.0.0.1;
        deny all;
    }

    # This location block is used to view nginx stats
    location /nginx_status {
        stub_status on;
        access_log off;
        allow 127.0.0.1;
        deny all;
    }
}

किसी को पता है कि मैं क्या गलत कर रहा हूँ?

END EDIT

मैंने अपने Permalinks को डिफ़ॉल्ट से /% postname% / में बदल दिया है, और अब WordPress के व्यवस्थापक पैनल के भीतर लिंक मुझे 404 त्रुटियां देते हैं - न कि WordPress 404 पृष्ठ, nginx 404 पृष्ठ। यह देखते हुए कि मुझे यह क्यों बताया गया है कि यह मेरी .htaccess फ़ाइल का संपादन होना चाहिए या मुझे यह बताकर कि वर्डप्रेस।

मैंने अपने वर्डप्रेस फ़ोल्डर में एक खाली .htaccess फ़ाइल बनाने की कोशिश की है, इसे 666 अनुमतियाँ देते हुए, उपयोगकर्ता और समूह को www-डेटा में बदल दिया और फिर permalinks- को बदलने का काम नहीं किया। तब मैंने इसे पारमिक्लिंक बदलने से पहले इसे बदल दिया:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

जब वह काम नहीं किया, मैं फिर से permalinks बदलने RewriteBaseसे /wordpress/पहले बदल गया - अभी भी कुछ भी नहीं।

मैं अपनी साइट की .conf फ़ाइल में भी जा चुका हूँ और try_files $uri $uri/ /index.php;निम्न में बदल गया, प्रत्येक बार nginx और php5-fpm को पुनः आरंभ करता हूँ;

try_files $uri $uri/ /index.php?$query_string;

try_files $uri $uri/ /index.php?q=$request_uri;

try_files $uri $uri/ /index.php?$args;

मैं नगनेक्स के साथ एक होम सर्वर चला रहा हूं। यहाँ क्या हो रहा है के बारे में कोई विचार?

जवाबों:


13

वे अपाचे .htaccessनियम फिर से लिख रहे हैं , लेकिन आपने कहा है कि आप एक नगनेक्स सर्वर पर हैं। Nginx एक समान .htaccessनिर्देशिका स्तर फ़ाइल का उपयोग नहीं करता है , बहुत कम यह .htaccessफ़ाइल का उपयोग खुद करता है .. आपको स्वयं सर्वर कॉन्फ़िगरेशन को संपादित करने की आवश्यकता है। कोडेक्स का एक विस्तृत नमूना है :

# WordPress single blog rules.
# Designed to be included in any server {} block.

# This order might seem weird - this is attempted to match last if rules below fail.
# http://wiki.nginx.org/HttpCoreModule
location / {
    try_files $uri $uri/ /index.php?$args;
}

# Add trailing slash to */wp-admin requests.
rewrite /wp-admin$ $scheme://$host$uri/ permanent;

# Directives to send expires headers and turn off 404 error logging.
location ~* ^.+\.(ogg|ogv|svg|svgz|eot|otf|woff|mp4|ttf|rss|atom|jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf)$ {
       access_log off; log_not_found off; expires max;
}

# Uncomment one of the lines below for the appropriate caching plugin (if used).
#include global/wordpress-wp-super-cache.conf;
#include global/wordpress-w3-total-cache.conf;

# Pass all .php files onto a php-fpm/php-fcgi server.
location ~ [^/]\.php(/|$) {
    fastcgi_split_path_info ^(.+?\.php)(/.*)$;
    if (!-f $document_root$fastcgi_script_name) {
        return 404;
    }
    # This is a robust solution for path info security issue and works with "cgi.fix_pathinfo = 1" in /etc/php.ini (default)

    include fastcgi.conf;
    fastcgi_index index.php;
#   fastcgi_intercept_errors on;
    fastcgi_pass php;
}

धन्यवाद, मैं इसे वोट करूँगा अगर मेरे पास प्रतिष्ठा थी। मैं इसे अपने .conf फ़ाइल में लागू करने में थोड़ी परेशानी महसूस कर रहा हूँ क्योंकि यह पहले से ही डिफ़ॉल्ट रूप से काफी बदल गया था, लेकिन कम से कम मैं .htaccess के साथ आसपास चक्कर नहीं लगा रहा हूँ।
Ninjachicken1

@ s_ha_dum, मैंने कल तक विन्यास विन्यास का उपयोग किया जब मैंने वर्डप्रेस 4.8 में अपडेट किया और अब मुझे परमलिंक्स कस्टम संरचना पर 404s मिल रहे हैं .... कल से इसे डीबग करने की कोशिश की, लेकिन कुछ भी नहीं है, कोई विचार ??
जादेय

मुझे अंतिम पंक्ति ओट पढ़नी थी "फास्टसीगी_पास यूनिक्स: /वर / आरयूएन / एफपी / एफपी 7.2- एफपीएम.स्क;" Ubuntu पर काम करने के लिए 18.04 लेकिन यह काम करता है और मेरी पवित्रता को बचाया
रोब

18

मैं कस्टम पेर्मलिंक सेटिंग के साथ वर्डप्रेस मल्टीसाइट का उपयोग कर रहा हूं: /% श्रेणी% /% पोस्टनाम% /

/etc/nginx/site-available/domain.conf

सर्वर पर {

location / {
    try_files $uri $uri/ /index.php?q=$uri$args;
}

यदि आपका रूट वर्डप्रेस वेबरोट नहीं है, लेकिन http://domain.com/wordpress/ :

location /wordpress/ {
    try_files $uri $uri/ /wordpress/index.php?q=$uri$args;
}

यदि आप ब्लॉगस्पेस के साथ पुराने वर्डप्रेस का उपयोग कर रहे हैं, तो जोड़ें: स्थान ^ ~ /blogs.dir {आंतरिक; अलियास / अनवर / www./wordpress/wp-content/blogs.dir; access_log बंद; log_not_found बंद; अधिकतम समाप्त; }

नेग्नेक्स कॉन्फ़िगरेशन की जाँच करें: सुडो नेग्नेक्स -t

रिलोड नगीनक्स: सुडो सेवा नगनेक्स रीलोड

पर्मलिंक सेटिंग्स बदलने की भी कोशिश करें।


4
यह उन लोगों के लिए सबसे अच्छा जवाब है, जो मैन्युअल रूप से एक नए डोमेन नाम के तहत एक उपनिर्देशिका में वर्डप्रेस इंस्टॉलेशन को स्थानांतरित करना चाहते हैं! आपको बहुत - बहुत धन्यवाद! यह स्वीकृत उत्तर होना चाहिए।
specialk1st

1
पथ: / etc / nginx / साइट-उपलब्ध / पढ़ना चाहिए: / etc / nginx / साइट-उपलब्ध /
अनुदान

6

इस कोड को दोनों में जोड़ना था /sites-available/your-settings-fileऔर /sites-enabled/your-settings-file:

server {
[...]

if (!-e $request_filename) {
    rewrite ^.*$ /index.php last;
}

[...]
}

यह अब मेरे लिए काम कर रहा है।


1
यह वह सरल उत्तर है जिसकी मुझे तलाश थी, धन्यवाद
ThEBiShOp

1
यह काम किया! क्या आप बता सकते हैं कि यह क्या करता है? (esp "अंतिम" भाग ...)
सिड

1

मुझे मूल पथ को वर्डप्रेस की संस्थापित निर्देशिका में सेट करना था: रूट / var / www / html / wp;

मुझे यह पसंद नहीं है क्योंकि मेरे पास इस मशीन पर अधिक एप्लिकेशन इंस्टॉल हैं लेकिन अधिक वर्चुअल होस्ट बनाने के लिए पर्याप्त होना चाहिए।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.