我使用 bigcartel,我想在不更改浏览器地址栏的情况下将我的 url 重定向到 bigcartels url,即 www.example.com 重定向到 www.test.bigcartel.com 但在浏览器地址栏中显示 www.example.com
我不想使用 iframe,而是使用 htaccess 文件。
RewriteCond %{HTTP_HOST} ^www\.example\.com$
RewriteRule ^/?$ "http\:\/\/testing\.bigcartel\.com\/" [L]
有人可以帮忙吗?我在下面找到了这个,但不知道要改变什么才能让它工作
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (.+)$ ?url=$1 [L]