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.
のようなものを使用します
Options +FollowSymlinks All -Indexes
RewriteEngine On
RewriteBase /
RewriteRule ^privacy.php$ privacy/
URL を書き換えるには:
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
######
############
############
######
RewriteRule ^privacy/ privacy.php [NC]
更新: privacy.php で /privacy にもリダイレクトしますか?
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
あなたが何を意味するのかわかりませんが、これはあなたが何を意味するのかについての私の推測に対する私の答えです