0

我在 localhost 工作已经在我的站点中编写了 htaccess

真实网址:

localhost/lite-cms/template/content/index.php?u_title=about-mind-yolk

我添加的 htaccess

RewriteRule ^([^/]*)\.html$ /lite-cms/template/content/index.php?id=$1 [L]

我得到这样的网址

http://localhost/lite-cms/template/content/about-mind-yolk.html

但我想要这样的 URL 不显示模板/内容/

http://localhost/lite-cms/about-mind-yolk.html

请给出解决方案?

4

1 回答 1

1

试试这个(确保 htaccess 在 lite-cms/ 目录中):

RewriteEngine on
RewriteBase /lite-cms/
RewriteRule ^([^/]*)\.html$ template/content/index.php?u_title=$1 [L]
于 2012-09-13T12:24:12.200 回答