-2

我想应用读写规则将重写规则转换为https://mysite.com/aboutus.phphttps://mysite.com/aboutus.page,我在 .htaccess 文件中包含以下内容,但它不工作。

RewriteEngine On 
RewriteCond %{SERVER_PORT} 80 
RewriteRule ^(.*)$ https://mysite.com/$1 [R,L]
4

1 回答 1

1

首先,您检查port 80,因为您使用https.

尝试这个:

RewriteEngine On
RewriteCond %{HTTPS} =on
RewriteRule ^/?aboutus\.page$ https://mysite.com/about\.php [R,L]

未经测试。另外,由于主题以一种方式说,而以另一种方式请求文本,我不知道您想要什么。:)

于 2013-09-12T07:22:34.047 回答