我目前正在建立一个网上商店系统,并正在考虑为这些用户创建子域。正如我过去做过几次一样,我从相同的代码开始,但由于某种原因它没有成功。也许这里有人可以对 mistaOptions +FollowSymLinks 有所了解
Options +Indexes
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^(www.)?testserver.com$
RewriteRule ^(/)?$ ee [L]
RewriteCond %{HTTP_HOST} !www.testserver.com$ [NC]
RewriteCond %{HTTP_HOST} ^([a-z0-9-]+).testserver.com [NC]
RewriteCond %{REQUEST_URI} !^index.php/ [NC]
RewriteRule (.*) http://www.testserver.com/Webshops/index.php/store_example/%1/$1 [P,L]
我希望子域重定向到某个地方并在其后添加所有内容,例如:testme.testserver.com/products/product-1 将是 url,但会显示http://www.testserver.com/Webshops/ index.php/store_example/product/product-1
谁知道我哪里出错了?