我有一个要在目录中构建的站点,而不是在我的网络服务器的根目录中。
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]
我有一个要在目录中构建的站点,而不是在我的网络服务器的根目录中。
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]
我知道了!
RewriteEngine On
RewriteRule ^([A-Za-z0-9-]+)/?$ index.php?view=$1 [L]
非常感谢http://www.cheatography.com/davechild/cheat-sheets/mod-rewrite/