1

当我访问mysite.com/search/eminem/1/video.html时,我尝试让我的网站使用 seo 运行, 以给我这个 url mysite.com/index.php?search=eminem&page=1&type=video的 结果显示搜索页面,但没有结果,没有图像或 javascripts 等。就像 css 和 js 没有实现

这是我的 .htacces 代码

<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteRule ^search/(.*)/(.*)/(.*).html?$ index.php?search=$3&page=$2&type=$1 [L]
<IfModule mod_deflate.c>
        <FilesMatch "\.(php|js|css|mp3|wmv|flv|html|htm)$">
            SetOutputFilter DEFLATE
        </FilesMatch>
    </IfModule>
</IfModule>
4

1 回答 1

1

您要么需要将所有相对链接(用于图像、CSS、JavaScript 等)设置为带有前导斜杠的绝对链接,要么将其添加到 index.php 内容的标题中:

<base href="/">
于 2012-09-30T21:24:29.613 回答