如何在服务器上使用.htaccess文件跳过文件夹路径

时间:2019-07-18 09:18:04

标签: .htaccess server

我在服务器的根目录中有两个子文件夹,即/ var / www / html。 =>文件夹a和文件夹b,两个文件夹都具有不同的网站。 如果要在URL中搜索我的域名,我想打开网站“ a”,如果要在URL中搜索我的domainName.com/admin,则要打开网站“ b”。

我正在尝试通过.htaccess文件进行更改。

RewriteEngine On
# If an existing asset or directory is requested go to it as it is
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f [OR]
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d
RewriteRule ^ - [L]

# If the requested resource doesn't exist, use index.html
RewriteRule ^ /index.html

if domainName.com is searched, website a should open and if domainName.com/admin is searched website b should open.

0 个答案:

没有答案