希望你们能帮我解决一个可能很简单的问题。
我在1个共享主机服务器上有2个域: example1.com example2.com
在主机上,我在public_html文件夹中有2个文件夹。
public_html
-- example1
-- example2
-- htaccess
我设法让两个域都重定向到每个文件夹。
我遇到的问题是这个。 两个页面都有一个名为" nextpage"的页面。 网址如下所示:
http://www.example1.com/nextpage
http://www.example2.com/nextpage
但每当我转到第二个网址时,它会重定向到第一个网址。 希望你仍然可以关注我。
以下是htaccess现在的情况。 我知道问题出在哪里,但不知道如何修复它。
# pointing for the domain example1.com to folder example1
ReWriteCond %{HTTP_HOST} example1.com
ReWriteCond %{REQUEST_URI} !example1/
ReWriteRule ^(.*)$ example1/$1 [L]
# pointing for the domain example2.com to folder example1
ReWriteCond %{HTTP_HOST} example2.com
ReWriteCond %{REQUEST_URI} !example2/
ReWriteRule ^(.*)$ example2/$1 [L]
希望它有意义。 如果您需要更多信息,请告诉我。