0

ローカルホストで作業している私は、すでに私のサイトに htaccess を書き込んでいます

実際の URL :

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

私が追加したhtaccess

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

このようなURLを取得しています

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

しかし、show template/content/ なしでこのような 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 に答える