【发布时间】:2011-05-24 22:08:21
【问题描述】:
我目前将我的主域从根目录重定向到子目录。正因为如此,每次我使用 cakePHP 编写 URL 或获取当前 URL 时,它都会显示子目录。
例如:
如果我在主页 (http://example.com) 然后使用 cake 的 $this->url 它将返回 /mysubdirectory/
这是我在根目录中使用的 .htaccess 文件(当然已修改为适合我的需要),它重定向到子目录。
# Hostmonster.com
# .htaccess main domain to subdirectory redirect
# Copy and paste the following code into the .htaccess file
# in the public_html folder of your hosting account
# make the changes to the file according to the instructions.
# Do not change this line.
RewriteEngine on
# Change yourdomain.com to be your main domain.
RewriteCond %{HTTP_HOST} ^(www.)?yourmaindomain.com$
# Change 'subdirectory' to be the directory you will use for your main domain.
RewriteCond %{REQUEST_URI} !^/subdirectory/
# Don't change this line.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Change 'subdirectory' to be the directory you will use for your main domain.
RewriteRule ^(.*)$ /subdirectory/$1
# Change yourdomain.com to be your main domain again.
# Change 'subdirectory' to be the directory you will use for your main domain
# followed by / then the main file for your site, index.php, index.html, etc.
RewriteCond %{HTTP_HOST} ^(www.)?yourmaindomain.com$
RewriteRule ^(/)?$ subdirectory/index.php [L]
我觉得我需要修改我的 cakePHP 应用程序中的 .htaccess 文件以忽略子目录,但我不确定如何。
【问题讨论】:
标签: .htaccess cakephp mod-rewrite