我想使用 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 ..
请帮忙,非常感谢:)