0

我的网站有主域和子域,有 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 似乎不起作用。

非常感谢提前.. :) 请帮助...

4

1 回答 1

0

您可以在您的子域 .htaccess 中尝试此代码:

Options +FollowSymLinks -MultiViews

RewriteEngine On
RewriteBase /subdomain/

RewriteRule ^([^.]+)\.html$ subdomaincontent.php?pid=$1 [L,NC,QSA]

.htaccess确保下面没有其他内容subdomain

于 2013-10-27T05:02:00.510 回答