Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了我的网站并将其上传到服务器上。我想始终将 URL 重写为基本 URL。例如,如果我在类似的页面上http://www.website.com/page.php,我希望它始终显示http://www.website.com
http://www.website.com/page.php
http://www.website.com
我在网上找到了一些答案,其中有一些代码要编写.htaccess,但没有一个有效。请帮忙
.htaccess
简而言之,我想隐藏 php 页面名称和 GET 属性并始终显示基本 URL。
我想你的目标是什么
RewriteRule ^page.php / [L]
基本的.htaccess:
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-l RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]