0

Webサーバーのルートではなく、ディレクトリに構築しているサイトがあります。

I would like  http://localhost/mysite/index.php?view=home

to rewrite to http://localhost/mysite/home

動かせない

.htaccessでこれを試してみてください

RewriteEngine On
RewriteBase /mysite/
RewriteRule ^([^/]*)$ index.php?view=$1 [L]
4

1 に答える 1

0

わかった!

RewriteEngine On
RewriteRule ^([A-Za-z0-9-]+)/?$ index.php?view=$1 [L]

http://www.cheatography.com/davechild/cheat-sheets/mod-rewrite/に感謝します

于 2012-10-21T21:39:25.417 に答える