如何使用htaccess更改URL

时间:2013-08-16 12:52:06

标签: php .htaccess

我也想隐藏.php扩展名

我的网址是:

www.mysite.com/Alumni/searchprofile?profile=maria_s

我想将其更改为:

www.mysite.com/Alumni/maria_s 

有任何线索,我需要ASAP答案吗?

2 个答案:

答案 0 :(得分:0)

请检查

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
</IfModule>

有关详细信息,请访问:http://blog.theonlytutorials.com/remove-php-extension-url-htaccess/

希望这会有所帮助..

答案 1 :(得分:0)

试试这个:

RewriteEngine On
RewriteBase /
RewriteRule ^Alumni/([^/]*)$ /Alumni/searchprofile?profile=$1

# Hide php extension.
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php