1

ここの記事を参照して、次の行で.htaccessファイルを作成しました

RewriteEngine on

RewriteRule ^/product/([0-9]+)/(.*)$ /index.php?route=product&product=$1 [L]

しかし、これは機能せず、404エラーが発生します。

次のようなURLが欲しい

http://localhost/product/12/some-random-text.html

リダイレクトされる

http://localhost/index.php?route=product&product=12

GoDaddy'sLinuxホスティングを使用しています

4

1 に答える 1

1

RewriteRule を次のように変更してみてください。

RewriteRule ^product/([0-9]+)/(.*)$ /index.php?route=product&product=$1 [QSA,L]
于 2012-04-21T19:52:48.310 に答える