私はこのURLを持っています:
http://www.example.com/some-annoying-folder/page.html?name=stack+overflow
しかし、ファイルは実際にはルート ディレクトリにあり、次のようになります。
http://www.example.com/page.html?name=stack+overflow
さらに、同様のサブディレクトリも変更する必要があります。
htaccessを使っている分、まだまだ慣れるのに苦労しています。
よろしくお願いします。
アップデート:
RewriteEngine On
Options +FollowSymLinks
RewriteRule .*(schedule.html|tickets.html|venue.html|city.html|concerts.html)$ $1 [L,R=302,QSA,NC]
#BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
#END WordPress