开发者

.htaccess setting is not working on Google Chrome

开发者 https://www.devze.com 2022-12-23 04:46 出处:网络
开发者_C百科I am using CakePHP framework, it redirect everything to the app folder using .htaccess, and then I set up a WordPress blog in /news/ folder outside of CakePHP, so I don\'t want everything
开发者_C百科

I am using CakePHP framework, it redirect everything to the app folder using .htaccess, and then I set up a WordPress blog in /news/ folder outside of CakePHP, so I don't want everything in /news/ to be redirect, so I modify the .htaccess, and here is the final version:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_URI} ^/news/(.*)$
    RewriteRule ^.*$ - [L]
</IfModule>

<IfModule mod_rewrite.c>   
    RewriteEngine on   
    RewriteBase /   
    RewriteRule    ^$ app/webroot/    [L]   
    RewriteRule    (.*) app/webroot/$1 [L]   
</IfModule>

It's working fine in IE and FireFox, I can visit mydomain/news/, but in Google Chrome, it still redirects to CakePHP app folder. How can I fix this?

Update: I found that I can visit /news/somepage, but can't visit the /news/


Might want to try clearing your Chrome cache - if you had an old rule that caused a "hard" redirect or delivered a 404/403 status message, it may still be in there.


I can visit honstars.com/news/ with Chrome.Please check the set of you browser.


Not sure about this one, but try with a user agent test - RewriteCond %{HTTP_USER_AGENT} ^BrowserName.* . Are you sending any additional headers?

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号