我正在管理像example.com/site/hello-world/
这样的wordpress博客,我想要隐藏网站前缀。我可以做的一件事是重新安装,但这不适合,因为博客是巨大的。
那我怎么能用.htacess?
答案 0 :(得分:1)
试试这个
> turn (1,2) (3,3) (2,1);;
val it : Direction = Right
> turn (1.0,2.0) (3.0,3.0) (2.0,1.0);;
val it : Direction = Right
以下是使用的标签
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on assuming you havent already
RewriteEngine On
RewriteBase /
RewriteRule ^site/(.*)$ /$1 [L,NC,R]