.htaccess rewriting url to page or directory

后端 未结 3 1866
悲&欢浪女
悲&欢浪女 2021-01-23 10:40

For my site I have a RewriteRule that points the URL http://www.mysite.com/work to a work.php file. I also have a directory called \"work\" that has files in it, like project1.p

3条回答
  •  一向
    一向 (楼主)
    2021-01-23 11:16

    Try this rule:

    RewriteCond %{REQUEST_FILENAME}.php -f
    RewriteRule .* $0.php [L]
    

提交回复
热议问题