我更新了我的网站tutorialdata.com,它使用 .htaccess 进行重定向规则。当我在 localhost 上检查时它工作正常,但是当我启动它时它不能正常工作。只有少数页面可以正常显示,其中大部分显示空白页面。
用于 .htaccess 的代码
RewriteBase www.tutorialdata.com/
RewriteCond %{REQUEST_URI} examples/(.*)/(.*)/(.*)/(.*)
RewriteRule ^examples/(.*)/(.*)/(.*)/(.*)$ examples.php?action=pgm&l=$1&c=$2&s=$3&p=$4
RewriteCond %{REQUEST_URI} examples/(.*)/(.*)/(.*)
RewriteRule ^examples/(.*)/(.*)/(.*)$ examples.php?action=subcat&l=$1&c=$2&s=$3
RewriteCond %{REQUEST_URI} examples/(.*)/(.*)
RewriteRule ^examples/(.*)/(.*)$ examples.php?action=cat&l=$1&c=$2
如何消除此错误?