私のウェブページには複数の言語があります。ここでは、リンクの例は次のとおりです。Mod_rewrite URIセグメントを削除するには
http://myweb.com/en/page_load/about_us
http://myweb.com/en/page_load/testing
http://myweb.com/de/page_load/about_us
http://myweb.com/de/page_load/testing
私はこのようなことを短くしたい:
http://myweb.com/en/about_us
http://myweb.com/en/testing
http://myweb.com/de/about_us
http://myweb.com/de/testing
現在、私は私の.htaccessファイルでこれを持っている:
RewriteEngine On
RewriteCond $1 !^(index\.php|images|public|css|blogg|img|captcha|robots\.txt|sitemap.xml|resources)
RewriteRule ^(.*)$ /index.php/$1 [L]
任意の提案ですか?
あなたは両方のルールをマージしたい、あるいはあなたの '.htaccess'であなたが持っているものは、あなたが提案した仕事をやるための最初の試みですか? –