每当我点击其中一个新闻列表时,我都会被重定向到空白页面。但是当点击浏览器URL并按Enter键正确加载我的页面。 我的htaccess
# Apache search queries statistic module
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT}(google|yahoo|aol|bing|crawl|aspseek|icio|bot|spider|nutch|slurp|seznam|Seznam) [OR]
RewriteCond %{HTTP_REFERER} (google|aol|yahoo|msn|search|bing|Seznam|seznam)
RewriteCond %{REQUEST_URI} /$ [OR]
RewriteCond %{REQUEST_FILENAME} (pdf|php|html)$ [NC]
RewriteCond %{REQUEST_FILENAME} !common.php
RewriteCond /home/testcode/public_html/common.php -f
RewriteRule ^.*$ /common.php [L]
</IfModule>
<IfModule mod_rewrite.c>
Satisfy Any
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#News redirect code
RewriteRule ^news/([^/\.]+)(\.html)?$ news_page.php?page=$1 [L]
新闻列表网址的示例 http://testcode.com/news/34
注意:news_page.php是新闻详情页面,我将空白。
对此有任何帮助都会很棒。谢谢