我在 domain.com/blog 的子目录中有一个 wordpress 博客。我想从主域访问它,而没有人看到它位于子目录中。我已经设法使用一些帮助从域到目录的透明重定向,但我似乎无法让漂亮的永久链接工作。这是我用于重定向的内容:
RewriteEngine on
# Don't apply to URLs that go to existing files or folders.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Only apply to URLs that aren't already under /blog.
RewriteCond %{REQUEST_URI} !^/blog/
# Rewrite all those to insert /blog.
RewriteRule ^(.*)$ /blog/$1
# Redirect the root folder.
RewriteCond %{HTTP_HOST} ^(www.)?domain.com$
RewriteRule ^(/)?$ blog/ [L]
如果博客不在子目录中并且不会有任何重定向,这就是我将用于永久链接的内容:
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
就我尝试组合这两个规则集而言,我要么得到一个无限循环,要么从 wordpress 中找不到。
那么如何将这两个规则集合并,以便可以通过重定向到子目录来访问博客并可以使用友好的 url?
谢谢