【发布时间】:2014-07-01 23:04:36
【问题描述】:
我有一个在 Nginx 上运行的 Laravel 站点,没问题。
它有一个正常的文件夹结构,如:
/app
/public
/vendor
...
/public 文件夹是 Laravel index.php 所在的位置。
我在 /public/blog 安装了 WordPress,因为我希望我的博客在 mywebsite.org/blog 上可见。
如果我将/blog/wp-admin/options-permalink.php 中定义的永久链接设置设置为“默认”(这意味着帖子的 URL 看起来像 /blog/?p=123),则该博客目前可以正常工作。 如果我将永久链接设置更改为 /blog/%postname%/,我将无法查看帖子(我得到一个 Laravel 404 页面)。
我绝对希望我的博客帖子具有对 SEO 友好的 URL(漂亮的永久链接)。
我当前的 Nginx 配置是:
server {
#This config is based on https://github.com/daylerees/laravel-website-configs/blob/6db24701073dbe34d2d58fea3a3c6b3c0cd5685b/nginx.conf and seemed to be necessary to get Laravel working.
server_name mysite.local;
# The location of our project's public directory.
root F:/code/mysite/public/;
# Point index to the Laravel front controller.
index index.php;
location / {
# URLs to attempt, including pretty ones.
try_files $uri $uri/ /index.php?$query_string;
}
# Remove trailing slash to please routing system.
if (!-d $request_filename) {
rewrite ^/(.+)/$ /$1 permanent;
}
# Yoast WordPress SEO plugin says to add these 2 rewrites:
rewrite ^/blog/sitemap_index\.xml$ /blog/index.php?sitemap=1 last;
rewrite ^/blog/([^/]+?)-sitemap([0-9]+)?\.xml$ /blog/index.php?sitemap=$1&sitemap_n=$2 last;
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9123
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9123;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~* \.(css|js|gif|jpe?g|png)$ {
#images, CSS, and JS have 1 week expiration: http://aspyct.org/blog/2012/08/20/setting-up-http-cache-and-gzip-with-nginx/ See also: http://serverfault.com/questions/339240/chromium-audit-says-its-not-caching-static-content-yet-headers-are-set-who-i
expires 168h;
add_header Pragma public;
add_header Cache-Control "public, must-revalidate, proxy-revalidate";
}
}
我花了几个小时查看其他答案(如下所列),但还没有弄清楚如何让它发挥作用。
建议?
- https://stackoverflow.com/a/10089936/470749
- https://stackoverflow.com/a/18596822/470749
- https://stackoverflow.com/a/17816122/470749
- https://stackoverflow.com/a/12635095/470749
- https://stackoverflow.com/a/11522602/470749
- https://stackoverflow.com/a/6155935/470749
- https://stackoverflow.com/a/23416206/470749
- http://codex.wordpress.org/Nginx#WordPress_Multisite_Subdirectory_rules
- http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory
- https://rtcamp.com/wordpress-nginx/tutorials/multisite/subdirectories/in-a-subdirectory/
附:我可以灵活选择安装 WordPress 文件的位置(例如,在 /public/blog 或将其上移至 /blog 或 /wordpress)。
【问题讨论】:
-
嘿,哥们,在这里回答你的号召:) 正如我在我的博客上发布的链接所讨论的那样,你是否尝试过将 wordpress 上移一层并为其添加位置,如下所述: tom.londondroids.com/2011/11/… ?欢呼
-
@gru 非常感谢。是的,我试过了。我认为梅尔文在下面的回答看起来不错,对吧?它似乎对我有用!