由于许多原因,我需要将我的基本 URL 重写为一个页面,该页面是一个集线器。
即http://data.mydomain.com始终将用户定向到http://data.mydomain.com/my-page
最好的方法是什么?
由于许多原因,我需要将我的基本 URL 重写为一个页面,该页面是一个集线器。
即http://data.mydomain.com始终将用户定向到http://data.mydomain.com/my-page
最好的方法是什么?
用这个
RewriteCond %{REQUEST_URI} !^/my-page
RewriteRule ^(.*)$ /my-page/$1 [L,R=301]
你有什么尝试吗?
/?$ /我的页面
在你的 htaccess 中添加这个:
RewriteEngin on
RewriteCond %{HTTP_HOST} ^data.mydomain.com$
RewriteRule ^/?$ /my-page [L,R=301]