我有一个基于 codeigniter 的销售脚本,效果很好
我为它构建了一个 api,并通过以下方式使用它:http://www.mysite/api/getdata
所以我现在想通过子域访问这个 api,比如: http://www.api.mysite/getdata
因为我认为解决方案是:将所有 *.mysite.com 重定向到 mysite.com,然后修改 .htaccess,但我不知道这是真的吗?
- - - - - - - - - - - - - - - - - - - - 更新 - - - - - -------------------------------------------
我当前的 .htaccess 文件
<IfModule mod_rewrite.c>
# Check if mod_rewrite module loaded and we can work with SEO urls
SetEnv HTTP_MOD_REWRITE On
RewriteEngine on
# To redirect all users to access the site WITH the 'www.' prefix,
# (http://example.com/... will be redirected to http://www.example.com/...)
# adapt and uncomment the following:
# RewriteCond %{HTTP_HOST} ^yoursite\.com$ [NC]
# RewriteRule ^(.*)$ http://www.yoursite.com/$1 [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
#RewriteRule ^(.*)$ index.php/$1 [L]
RewriteRule ^(.*)$ ./index.php [L]
</IfModule>