Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このwww.domain.com/pages/article/のようなパスをwww.domain.comに書き換える方法を知りたい
私はそれをやったが、CSSファイルもパスを変更した
RewriteEngine On RewriteCond %{REQUEST_FILENAME} ^index.php$ RewriteRule . http://www.domain.com/ [L]
個別の書き換え条件のものは除外対象に追加してください。
RewriteEngine On RewriteCond %{REQUEST_URI} !\.(css|js|png|jpe?g|gif)$ [NC] RewriteCond %{REQUEST_FILENAME} ^index.php$ RewriteRule . http://www.domain.com/ [L]