我的localhost上有一个网站,网址是http://localhost:8484/myweb/onboard
如何更改网址? http://localhost:8484/myweb/没有登机,但仍指向同一页面,是否可能?
答案 0 :(得分:1)
尝试使用以下htaccess
RewriteEngine On
RewriteRule ^$ onboard/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ onboard/$1
不要忘记在服务器中启用rewrite_module