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.
私は現在、次のhtaccess書き換えルールを持っています:
RewriteRule (.*) index.php/$1 [L]
'template'と'image'のような2つの特定の文字列を除外するにはどうすればよいですか?
私は他の投稿を読みましたが、それは私には明確ではありませんでした。
否定の書き換え条件を作成できます
このような:
RewriteCond %{REQUEST_URI} !^/(template|image) RewriteRule (.*) index.php/$1 [L]
これは、画像とテンプレートフォルダ内のものを指すURLを効果的に書き換えません。
RewriteCond