-2

https://mysite.com/aboutus.phpの Rewrite ルールをhttps://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 に答える