我想在主文件夹下安装WP,并将所有流量重定向到它,期望访问domain.com/api,domain.com / mobile。
例:
我尝试了很少的htaccess设置,但我不能说所有情况都有效。有人可以帮我从这里出去吗?
提前非常感谢。
|--main
| |-- index.php
|--api
|--mobile
|--.htaccess
RewriteEngine On
# Change root directory to "main" folder
RewriteCond %{THE_REQUEST} ^GET\ /main/
RewriteRule ^main/(.*) /$1 [L,R=301]
RewriteRule !^main/ main%{REQUEST_URI} [L]