使用htaccess删除部分网址

时间:2017-07-02 10:16:50

标签: php .htaccess

我的localhost上有一个网站,网址是http://localhost:8484/myweb/onboard

如何更改网址? http://localhost:8484/myweb/没有登机,但仍指向同一页面,是否可能?

1 个答案:

答案 0 :(得分:1)

尝试使用以下htaccess

RewriteEngine On 
RewriteRule ^$ onboard/ 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^(.*)$ onboard/$1

不要忘记在服务器中启用rewrite_module