0

我的网站上有一些这样的网址..

http://www.mydomain.com/about.php
http://www.mydomain.com/contact.php
http://www.mydomain.com/signup.php
http://www.mydomain.com/testimonials.php ...... and much more 

现在我正在尝试将上面的网址转换为用户友好的网址

http://www.mydomain.com/about
http://www.mydomain.com/contact
http://www.mydomain.com/signup
http://www.mydomain.com/testimonials

这是到目前为止我尝试过的 .htaccess 文件中的代码。但它不起作用。

# Add trailing slash to url
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/|#(.*))$
  RewriteRule ^(.*)$ $1/ [R=301,L]

# Remove .php-extension from url
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME}\.php -f
  RewriteRule ^([^\.]+)/$ $1.php 

任何人都可以帮我从我的网址中删除 .php etension 吗?谢谢你。

4

2 回答 2

1

摆脱您正在使用的条件,而是在您的 htaccess 文件中使用以下 2 行

RewriteEngine On # Turn on the rewriting engine
RewriteRule   ^whatever/?$   whatever.php  [NC]

即使用户在名称后键入正斜杠,这也将起作用

如果你想让它们动态化,这里有一个很好的教程

于 2013-05-19T09:07:20.990 回答
0

如果您无权访问服务器的 htaccess 文件或者如果它被覆盖,则可以正确实施,以免在部署过程中造成混乱。您可以考虑使用类似 toro-php http://toroweb.org/的库来轻松路由。

于 2013-05-19T11:32:17.987 回答