重寫url RewriteRule^about//about.php [L,R = 301],但頁面也可以直接通過/about.php訪問。使用.htaccess重定向錯誤
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase/
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+about\.php\s [NC]
RewriteRule^/about/ [R=302,L]
RewriteRule ^about/?$ /about.php [L,NC]