-1
- では動作しません。
- 私はリンクhttps://www.example.com/friednly-url/を開いた場合には、404 エラーがスローされます。
- 私がリンクを開く場合https://www.example.com/file.phpが動作します。
私.htaccess
ファイルには、次のようになります。フレンドリーURLはHTTPS
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.example.com$
RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]
Rewriterule ^(friendly-url) index.php?file=first&cat_id=0,01
は私が何かを逃しましたか?なぜ私はHTTPSでフレンドリーなURLを開くことができないのか分かりません。