Hide wordpress prefix in url using .htaccess

做~自己de王妃 提交于 2019-12-12 03:33:08

问题


I'm managing a wordpress blog like example.com/site/hello-world/ and I want to hide the site prefix. One thing I can do is to reinstall but that's not suitable as the blog is huge.

so how can I do with with .htacess?


回答1:


Try this

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on assuming you havent already
RewriteEngine On
RewriteBase /

RewriteRule ^site/(.*)$ /$1 [L,NC,R]

Here are the tags used

L  - Last
NC - Ignore (No) Case comparison
R  - External redirection with 302


来源:https://stackoverflow.com/questions/35499435/hide-wordpress-prefix-in-url-using-htaccess

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!