【发布时间】:2015-01-21 10:55:39
【问题描述】:
我正在尝试将此 URL www.domain.com/~username 重定向到 www.domain.com/~username/public,但从 URL 中删除 /public。
这是我的.htaccess 文件
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /~username/
RewriteRule !^public/ public%{REQUEST_URI} [L]
RewriteCond %{THE_REQUEST} ^GET\ /public/
RewriteRule ^public/(.*) /$1 [L,R=301]
</IfModule>
但我收到此错误:
Not Found
The requested URL /~username/public/~username/ was not found on this server.
任何帮助表示赞赏!
【问题讨论】:
标签: apache .htaccess mod-rewrite redirect