【发布时间】:2014-08-25 19:30:41
【问题描述】:
我已经在 cakephp 的 webroot 文件夹中安装了 wordpress。 现在我的博客可以用“http://smghut.com/blog/”正确打开,但是当我输入“http://smghut.com/blog”(即,没有斜杠(/))时,它最终重定向到“http://www.smghut.com/app/webroot/blog/”。
【问题讨论】:
-
发布 cakephp
.htaccess文件 -
@machineaddict
RewriteEngine On RewriteBase /blog/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /blog/index.php [L]
标签: php wordpress .htaccess cakephp mod-rewrite