0

我已经尝试了很多,但我仍然无法将位于 /blog 目录中的 .htaccess 中的文件重写到根目录。

目录中的url是

site.com/blog/319-2/

所需的网址

site.com/support/

htaccess 位于根目录和博客目录中。

RewriteEngine On
RewriteCond %{HTTP_HOST} ^example\.com [NC]
RewriteRule (.*) http://www.example.com/$1 [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html

和博客目录

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

# END WordPress

我还应该提到,这个域是一个附加域,而不是一个主要的域,以防万一会产生任何影响......

4

1 回答 1

0

如果您只想重定向该 URL 而不是整个目录,请使用

RewriteRule ^blog/319-2/?$ /support/ [NC,L]
于 2013-08-26T04:11:29.067 回答