1

我遇到了 htaccess 重定向问题。以下是我遇到的问题。

主域实际指向的根文件夹具有以下文件夹:“example”example.com 实际上在内部链接到路径“root/example/”而不是“root/”。这是使用以下 htaccess 代码完成的

RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www.)?example.com$
RewriteCond %{REQUEST_URI} !^/example/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /example/$1
RewriteCond %{HTTP_HOST} ^(www.)?example.com$
RewriteRule ^(/)?$ example/index.html [L]

文件夹“exmaple”有以下子文件夹:newexample、newexample_beta 如果我转到 URL“example.com/newexample”,则该 URL 需要在内部链接到“root/example/newexample”。但是 URL 将我重定向到“example.com/example/newexample/”,请告诉我需要做什么

4

0 回答 0