我的网站有主域和子域,有 htaccess 重写问题,
我的问题是,www.example.com 下有 htaccess 代码,
RewriteBase /
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^([^?]*).html$ content.php?pid=$1
当我使用 URL 路径 www.example.com/test.html 或 www.example.com/folder/test.html 创建内容页面时,它工作得非常好。
但是我的子域上有相同的代码,并且“文件夹”网址不起作用。我的意思是 subdomain.example.com/test.html 工作正常,但 subdomain.example.com/folder/test.html 似乎不起作用。
非常感谢提前.. :) 请帮助...