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 从更改ahardenjr.com/project.html为 just ahardenjr.com/project。
ahardenjr.com/project.html
ahardenjr.com/project
我以为它是基本标签,但是当我添加 时<base href="http://www.ahardenjr/project"/>,CSS 就中断了。有什么建议么?
<base href="http://www.ahardenjr/project"/>
看起来你正在尝试做一个基本的mod_rewrite. 像这样的东西:
mod_rewrite
RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME}.html -f RewriteRule ^(.*)$ $1.html
一个简单的解决方案是创建一个名为“project”的子目录,然后将“project.html”作为您的索引文件。我相信这应该可以解决问题。