0

.htaccess ファイルで次のコードを使用して、URL でファイル名を非表示にしようとしました。しかし、ファイル名は表示されています。誰でもこのコードを修正できますか。

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html
4

1 に答える 1

0

これを使用できます。ここで私は静的コードを与えました。たとえば、私のファイル名はtestimonial.phpで、testimonial.htmlに変更しました。したがって、タグリンクでは、testimonial.phpの代わりにtestimonial.htmlを指定する必要があります。その後、それはうまくいくでしょう。

Options -Indexes
RewriteEngine on

RewriteRule ^testimonial.html /testimonial.php [NC]
RewriteRule ^aboutus.html /about_us.php [NC]
于 2013-01-24T11:48:27.503 に答える