我已经尝试过这么多,但我仍然无法将位于/ blog目录中的.htaccess中的文件重写到根目录。
目录中的网址是
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
我还应该提一下,这个域名是一个插件域而不是主要的,只是在案件中会产生任何影响......
答案 0 :(得分:0)
如果您只想重定向该URL而不是整个目录,请使用
RewriteRule ^blog/319-2/?$ /support/ [NC,L]