0

.htaccess ファイルが正しく機能しません。誰かがそれを修正するのを手伝ってください。

http://htaccess.madewithlove.be/を使用して正しくしようとしましたが、成功しませんでした。

http://www.mydomain.co.uk/bootstrap/rolex-watch.php は、アドレス バーに http://www.mydomain.co.uk/bootstrap/rolex-watch と表示され、rolex-watch が表示されます。 phpページ

http://www.mydomain.co.uk/bootstrap/products.php?f=Watch&b=Tissot&t=T-Touch は、アドレス バーに http://www.mydomain.co.uk/bootstrap/products/ と表示され ます。 /Tissot/T-Touch を見て、f とオプションのパラメーター b と t パラメーターが設定された製品ページを表示します。

.htaccess ファイルの内容

ErrorDocument 404 /bootstrap/404.php   
ErrorDocument 403 /bootstrap/403.php 

Options +FollowSymLinks
Options +Indexes
RewriteOptions inherit
RewriteEngine on
RewriteRule ^bootstrap/products/(.*)/(.*)/(.*)$ bootstrap/products.php?f=$4&b=$5&t=$6
RewriteRule ^bootstrap/products/(.*)/(.*)$ bootstrap/products.php?f=$4&b=$5
RewriteRule ^bootstrap/products/(.*)$ bootstrap/products.php?f=$4
RewriteRule ^bootstrap/products/search/(.*)$ bootstrap/products.php?s=$1

Redirect bootstrap/rolex-watch.php http://www.mydomain.co.uk/bootstrap/rolex-watch
Redirect bootstrap/scrap-gold.php http://www.mydomain.co.uk/bootstrap/scrap-gold
Redirect bootstrap/eternity-ring.php http://www.mydomain.co.uk/bootstrap/eternity-ring
Redirect bootstrap/engagement-ring.php http://www.mydomain.co.uk/bootstrap/engagement-    ring
Redirect bootstrap/wedding-ring.php http://www.mydomain.co.uk/bootstrap/wedding-ring
Redirect bootstrap/diamond-ring.php http://www.mydomain.co.uk/bootstrap/diamond-ring
Redirect bootstrap/inferno-diamonds.php http://www.mydomain.co.uk/bootstrap/inferno-    diamonds
Redirect bootstrap/radley-products.php http://www.mydomain.co.uk/bootstrap/radley-products

RewriteRule ^([^\.]+)$ $1.php [NC,L]
4

2 に答える 2

0

ジョン・リンに感謝しますが、私にはうまくいきませんでした。

私はうまくいく何かへの道をブラフしたようです。必要のないエントリがいくつかありました。

オプションが定義されていないため、効率的に記述されていますか?

RewriteEngine on
RewriteBase /bootstrap/

ErrorDocument 404 /bootstrap/404.php   
ErrorDocument 403 /bootstrap/403.php 

RewriteRule ^products/search/(.*)$ products.php?s=$1
RewriteRule ^products/(.*)/(.*)/(.*)$ products.php?f=$1&b=$2&t=$3
RewriteRule ^products/(.*)/(.*)$ products.php?f=$1&b=$2
RewriteRule ^products/(.*)$ products.php?f=$1

RewriteRule ^([^\.]+)$ $1.php [NC,L]
于 2013-09-10T14:21:10.813 に答える