0

我想使用 htaccess 制作一个假网址。我已经在寻找所有论坛或教程来编写一个 htaccess,但是为什么我在更深的“/”上出错了。这是我的代码:

Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php

RewriteCond %{SCRIPT_FILENAME} !-d 
RewriteCond %{SCRIPT_FILENAME} !-f

RewriteRule ^about-us content.php?id=1 [L,NC,QSA]
RewriteRule ^how-to-order content.php?id=2 [L,NC,QSA]
RewriteRule ^information content.php?id=3 [L,NC,QSA]
RewriteRule ^contact-us content.php?id=4 [L,NC,QSA]

RewriteRule ^accessories product.php?category=1 [L,NC,QSA]
RewriteRule ^accessories/([^/]+) product.php?sub-category=$1 [NC]

当我尝试输入“ http://www.beauty4easy.com/accessories ”时,背面显示“product.php?category=1”是正常的。但是为什么当我想访问“ http://www.beauty4easy.com/accessories/kalung ”时它重定向到“product.php?sub-category=kalung” 但是没有css ..设计是空白的,变成白色的没有图像或CSS ..

请帮忙,非常感谢:)

4

1 回答 1

3

您可能正在为您的资产(图像、CSS 等)使用相对路径,例如:

../images/some_image.jpg

当尝试从 example 解析该 url 时http://www.beauty4easy.com/accessories/kalung,它会在以下位置查找资产:

http://www.beauty4easy.com/accessories/images/...

一种可能的解决方案是为您的资产使用绝对路径,例如:

/images/some_image.jpg
/css/styles.css
于 2013-03-26T14:07:05.437 回答