我已将 /app/webroot/blog/.htacsess 更改为
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /app/webroot/blog/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /app/webroot/blog/index.php [L]
</IfModule>
和根 /.htacsess 到
<IfModule mod_rewrite.c>
RewriteEngine on
RedirectMatch temp ^/blog/wp-admin$ http://mysite.com/blog/wp-admin/
RewriteRule blog$ /blog/ [L]
RewriteRule blog/wp-admin$ /blog/wp-admin/ [L]
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>
我的站点重定向到http://mysite.com/blog/但是当我尝试登录到管理站点时,例如http://mysite.com/blog/wp-admin它重定向到http://mysite.com/app /webroot/blog/wp-admin我的用户名和密码不起作用。
但如果我写硬编码网址“http://mysite.com/blog/wp-login.php”,那么我的用户名和密码就可以使用。
如何解决这个问题呢?请帮我...