作者: gamezz 時間: 2015-1-12 16:39 標題: 搞唔掂個mod rewrite
現有的 .htaccess(有錯)
- <IfModule mod_rewrite.c>
- RewriteEngine On
- RewriteBase /
- RewriteCond %{REQUEST_FILENAME} !-d
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^(en|ch)/(.*)/(.*)/$ /index.php?lang=$1&co=$2&me=$3 [NC,L]
- RewriteRule ^(en|ch)/(.*)/$ /index.php?lang=$1&co=$2&me=$3 [L]
- RewriteRule ^(en|ch)/(.*)$ /index.php?lang=$1&co=$2 [L]
- RewriteRule ^(en|ch)/$ /index.php?lang=$1&co=$2 [L]
- RewriteRule ^(en|ch)$ /index.php?lang=$1 [L]
- </IfModule>
http://www.abc.com/
==> no redirect
http://www.abc.com/en/
==> http://www.abc.com/index.php?lang=en
http://www.abc.com/ch/
==> http://www.abc.com/index.php?lang=ch
http://www.abc.com/en/driver/
==> http://www.abc.com/index.php?lang=en&co=driver
http://www.abc.com/ch/driver/
==> http://www.abc.com/index.php?lang=ch&co=driver
http://www.abc.com/en/shop/
==> http://www.abc.com/index.php?lang=ch&co=shop
另外想加些特殊轉向:
http://www.abc.com/en/promotion2015/
==> http://www.abc.com/index.php?lang=en&co=shop&me=free
作者: KinChungE 時間: 2015-1-12 23:23
搞清楚
Rewrite != Redirect
