htaccess を使用していくつかの静的ページをリダイレクトし、同じ URL を保持するにはどうすればよいですか?
例 :
Redirect www.mydomain.com/url-that-remains.php to www.mydomain.com/page-number-23
私の現在のhtaccessファイルは次のようになります。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>