私は少し難しかったです。私はウェブページを持っており、コンテンツを維持するためのCMSを作成しました。htaccess RewriteRule confusion
システムの管理部分にサイトが作成されるたびに、.htaccessファイルが更新されるようにサイトが作成されます。
ユーザーフレンドリーなURLを作成するために.htaccessファイルのみを使用します。
私の.htaccessファイルは、次のようになります。
RewriteEngine on
RewriteRule home.html index.php?page_id=2
RewriteRule producenter.html index.php?page_id=13
RewriteRule produkter.html index.php?page_id=12
RewriteRule om-oss.html index.php?page_id=14
RewriteRule producent-3-s.html index.php?show_manu=true&manu_id=4
RewriteRule bildbank-producent-3-s.html index.php?show_manu_press=true&manu_id=4
...
すべては小さな例外を除いて、正常に動作します。 場合のように名前が、「類似」している場合は、次のサイトが自動的例えば、最初のoccuranceが表示されます
producent-3-s.html
and
bildbank-producent-3-s.html
'producent-3-s.html'。 「bildbank-producent-3-s.html」は決して表示されません。
どうすればこの問題を解決できますか?私は私が私の自己を明らかにし、希望と私は
'^ producent-3-s.html $' – tttony