1

我想重定向blog.byperte.com/blog/articleblog.byperte.com/article. 该博客基于 Anchor CMS 构建,具有以下 .htaccess 文件:

Options -indexes

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# Rewrite all other URLs to index.php/URL
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>
ErrorDocument 404 index.php
</IfModule>
4

1 回答 1

1

要从 URL 中删除文件目录,请在您的.htaccess:

RewriteEngine On
RewriteRule ^blog/(.*)$ /$1 [L,R=301]

确保在测试之前清除缓存。

于 2016-10-30T22:40:14.050 回答