0
これは私のhtaccessサイトのいくつかの行です。htaccessに静的ルールを書き込む
RewriteRule sitemap.xml /index.php?route=feed/google_sitemap
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
私はwww.xample.com/index.php?route=xyz/abcに条件www.xample.com/nameのための静的なルールを書き換えたいです。このために私はこの解決策を考え出しましたが、それは私のためには機能しません。
RewriteRule sitemap.xml /index.php?route=feed/google_sitemap
RewriteCond %{REQUEST_FILENAME} ^name$
RewriteRule ^([^?]*) index.php?route=xyz/abc
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
助けが必要ですか?