我经常搜索但我失败了。
我有一个像
这样的子域名http://subdomain.domain.it
指向
http://domain.it/subdomain/
我已将子文件夹更改为
sub-domain/
所以我决定在
中更改我的子域名http://sub-domain.domain.it
并指向
http://domain.it/sub-domain/
但是我无法将我的.htaccess重写为此规则。 我必须这样做,因为我的子域在谷歌上有一个好位置,但这个位置指向http://subdomain.domain.it,而现在我的所有内容都在http://sub-domain.domain.it。
这是我的实际.htaccess:
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
RewriteRule ^([^.]+)?$ page.php [L]
感谢所有