0
我有一個WordPress的URL像www.example.com/about
和其他URL這是PHP核心正常部www.example.com/about.php
我想WordPress站點www.example.com/about
的URL結構改寫爲www.example.com/about.php
試圖重寫URL在WordPress
RewriteEngine On
Options +FollowSymLinks -MultiViews -Indexes
RewriteBase/
RewriteRule ^about.php (.*) about
你能否提供你的代碼的理解。你究竟在做什麼 –