.htaccess rewriting url to page or directory

后端 未结 3 1867
悲&欢浪女
悲&欢浪女 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:20

    This is the answer to your question. It works for me.

    RewriteEngine On
    RewriteBase /
    RewriteRule ^([a-z]+)$ $1.php [L]
    

    Simply remove beta/

提交回复
热议问题