开发者

Remove sub directory and file extension

开发者 https://www.devze.com 2023-04-03 20:20 出处:网络
If I have site.com/page/about.php How can I remove the sub directory and file extension? Example: site.com/a开发者_JAVA技巧boutUse this in your .htaccess file

If I have site.com/page/about.php

How can I remove the sub directory and file extension?

Example: site.com/a开发者_JAVA技巧bout


Use this in your .htaccess file

Options +FollowSymLinks
RewriteEngine On 
RewriteRule ^about(\/?)$ /page/about.php [NC,L]

Create your .htaccess in your root folder.

0

精彩评论

暂无评论...
验证码 换一张
取 消