0

I have search many times but not find correct answer

i want to this

my url is domain.com/privacy.php

and i want to domain.com/privacy/

it's possible if yes please tell me how.

4

3 に答える 3

0

のようなものを使用します

Options +FollowSymlinks All -Indexes
RewriteEngine On

RewriteBase /

RewriteRule ^privacy.php$ privacy/
于 2012-07-02T11:26:08.207 に答える
0

URL を書き換えるには:

Options +FollowSymlinks
RewriteEngine On
RewriteBase /
######
############
############
######
RewriteRule ^privacy/ privacy.php [NC]

更新: privacy.php で /privacy にもリダイレクトしますか?

于 2012-07-02T11:30:17.997 に答える
0
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php

あなたが何を意味するのかわかりませんが、これはあなたが何を意味するのかについての私の推測に対する私の答えです

于 2012-07-02T12:20:18.093 に答える